Phalcon\Db\Adapter\MongoDB\Model\IndexInput::__construct PHP Метод

__construct() публичный Метод

Constructor.
public __construct ( array $index )
$index array Index specification
    public function __construct(array $index)
    {
        if (!isset($index['key'])) {
            throw new InvalidArgumentException('Required "key" document is missing from index specification');
        }
        if (!is_array($index['key']) && !is_object($index['key'])) {
            throw InvalidArgumentException::invalidType('"key" option', $index['key'], 'array or object');
        }
        foreach ($index['key'] as $fieldName => $order) {
            if (!is_int($order) && !is_float($order) && !is_string($order)) {
                throw InvalidArgumentException::invalidType(sprintf('order value for "%s" field within "key" option', $fieldName), $order, 'numeric or string');
            }
        }
        if (!isset($index['ns'])) {
            throw new InvalidArgumentException('Required "ns" option is missing from index specification');
        }
        if (!is_string($index['ns'])) {
            throw InvalidArgumentException::invalidType('"ns" option', $index['ns'], 'string');
        }
        if (!isset($index['name'])) {
            $index['name'] = Functions::generateIndexName($index['key']);
        }
        if (!is_string($index['name'])) {
            throw InvalidArgumentException::invalidType('"name" option', $index['name'], 'string');
        }
        $this->index = $index;
    }