| Total Complexity | 7 |
| Total Lines | 46 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | trait Kit |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * available features |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | private $features = [ |
||
| 20 | 'timestamps', |
||
| 21 | ]; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * loaded chips |
||
| 25 | * @var array |
||
| 26 | */ |
||
| 27 | private $chips = []; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param string $name |
||
| 31 | * @param Executable $executable |
||
| 32 | * @return Builder |
||
| 33 | */ |
||
| 34 | final public function table(string $name, Executable $executable = null) : Builder |
||
| 37 | } |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return array |
||
| 41 | */ |
||
| 42 | final private function fcInjectors() : array |
||
| 61 |