| Total Complexity | 3 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | trait Callbacks |
||
| 6 | { |
||
| 7 | public function thisClosureShouldAllow(callable $callback, array $parameters = []) |
||
| 8 | { |
||
| 9 | return $this->thisMethodShouldAllow($callback, $parameters); |
||
| 10 | } |
||
| 11 | |||
| 12 | public function thisMethodShouldAllow($callback, array $parameters = []) |
||
| 16 | }; |
||
| 17 | } |
||
| 18 | |||
| 19 | public function thisValueShouldAllow($value) |
||
| 23 | }; |
||
| 24 | } |
||
| 26 |