Doctrine\OrientDB\Query\Command\Select::__construct PHP Метод

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

Builds a Select object injecting the $target into the FROM clause.
public __construct ( array $target = null )
$target array
    public function __construct(array $target = null)
    {
        parent::__construct();
        if ($target) {
            $this->setTokenValues('Target', $target);
        }
    }