mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-09 06:28:28 +03:00
47 lines
1.1 KiB
PHP
47 lines
1.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Predis package.
|
|
*
|
|
* (c) 2009-2020 Daniele Alessandri
|
|
* (c) 2021-2023 Till Krüss
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Predis\Command\Argument\Search\SchemaFields;
|
|
|
|
class VectorField extends AbstractField
|
|
{
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $fieldArguments = [];
|
|
|
|
/**
|
|
* @param string $fieldName
|
|
* @param string $algorithm
|
|
* @param array $attributeNameValueDictionary
|
|
* @param string $alias
|
|
*/
|
|
public function __construct(
|
|
string $fieldName,
|
|
string $algorithm,
|
|
array $attributeNameValueDictionary,
|
|
string $alias = ''
|
|
) {
|
|
$this->setCommonOptions('VECTOR', $fieldName, $alias);
|
|
|
|
array_push($this->fieldArguments, $algorithm, count($attributeNameValueDictionary));
|
|
$this->fieldArguments = array_merge($this->fieldArguments, $attributeNameValueDictionary);
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function toArray(): array
|
|
{
|
|
return $this->fieldArguments;
|
|
}
|
|
}
|