Total Complexity | 5 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | trait Optionable |
||
26 | { |
||
27 | protected function hasForce(): bool |
||
28 | { |
||
29 | return $this->boolOption('force'); |
||
30 | } |
||
31 | |||
32 | protected function hasFull(): bool |
||
35 | } |
||
36 | |||
37 | protected function hasInline(): bool |
||
38 | { |
||
39 | return Config::hasInline(); |
||
40 | } |
||
41 | |||
42 | protected function boolOption(string $key): bool |
||
45 | } |
||
46 | } |
||
47 |