SqlParser\Components\Reference::__construct PHP Метод

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

Constructor.
public __construct ( Expression $table = null, array $columns = [], OptionsArray $options = null )
$table Expression The name of the table referenced.
$columns array The columns referenced.
$options OptionsArray The options.
    public function __construct($table = null, array $columns = array(), $options = null)
    {
        $this->table = $table;
        $this->columns = $columns;
        $this->options = $options;
    }