| Total Complexity | 4 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 5 | trait DefaultTag |
||
| 6 | { |
||
| 7 | 34 | private function defaultExcludeTag(): array |
|
| 8 | { |
||
| 9 | 34 | return \getenv('TOOLBOX_EXCLUDED_TAGS') ? \explode(',', \getenv('TOOLBOX_EXCLUDED_TAGS')) : [\sprintf('exclude-php:%s.%s', PHP_MAJOR_VERSION, PHP_MINOR_VERSION)]; |
|
| 10 | } |
||
| 11 | |||
| 12 | 34 | private function defaultTag(): array |
|
| 15 | } |
||
| 16 | } |
||
| 17 |