| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | trait Tool |
||
| 6 | { |
||
| 7 | 4 | public static function columns(array $columns): string |
|
| 8 | { |
||
| 9 | 4 | return implode('`, `', $columns); |
|
| 10 | } |
||
| 11 | |||
| 12 | 2 | public static function getAttributesKey(array $attributes): string |
|
| 15 | } |
||
| 16 | |||
| 17 | 2 | public static function getAttributesValue(array $attributes): string |
|
| 20 | } |
||
| 21 | } |
||
| 22 |