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