Total Complexity | 5 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class WithKeyword extends Component |
||
18 | { |
||
19 | /** @var string $statement */ |
||
20 | public $name; |
||
21 | /** @var ArrayObj[] $statement */ |
||
22 | public $columns = []; |
||
23 | /** @var Parser $statement */ |
||
24 | public $statement; |
||
25 | |||
26 | public function __construct(string $name) |
||
27 | { |
||
28 | $this->name = $name; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @param WithKeyword $component |
||
33 | * |
||
34 | * @return string |
||
35 | */ |
||
36 | public static function build($component, array $options = []) |
||
57 | } |
||
58 | } |
||
59 |