PHP Класс SqlParser\Components\Reference

Наследование: extends SqlParser\Component
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
$REFERENCES_OPTIONS array All references options.
$columns array The referenced columns.
$options OptionsArray The options of the referencing.
$table Expression The referenced table.

Открытые методы

Метод Описание
__construct ( Expression $table = null, array $columns = [], OptionsArray $options = null ) Constructor.
build ( Reference $component, array $options = [] ) : string
parse ( Parser $parser, TokensList $list, array $options = [] ) : Reference

Описание методов

__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.

build() публичный статический Метод

public static build ( Reference $component, array $options = [] ) : string
$component Reference The component to be built.
$options array Parameters for building.
Результат string

parse() публичный статический Метод

public static parse ( Parser $parser, TokensList $list, array $options = [] ) : Reference
$parser SqlParser\Parser The parser that serves as context.
$list SqlParser\TokensList The list of tokens that are being parsed.
$options array Parameters for parsing.
Результат Reference

Описание свойств

$REFERENCES_OPTIONS публичное статическое свойство

All references options.
public static array $REFERENCES_OPTIONS
Результат array

$columns публичное свойство

The referenced columns.
public array $columns
Результат array

$options публичное свойство

The options of the referencing.
public OptionsArray,SqlParser\Components $options
Результат OptionsArray

$table публичное свойство

The referenced table.
public Expression,SqlParser\Components $table
Результат Expression