| Conditions | 3 |
| Paths | 2 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | 6 | public function validate($instance) |
|
| 23 | { |
||
| 24 | 6 | if (is_callable($instance)) { |
|
| 25 | 6 | return; |
|
| 26 | } |
||
| 27 | |||
| 28 | 1 | throw new InvalidServiceException(sprintf( |
|
| 29 | 1 | 'Only callables are valid plugins for "%s", but "%s" was provided', |
|
| 30 | 1 | __CLASS__, |
|
| 31 | 1 | is_object($instance) ? get_class($instance) : gettype($instance) |
|
| 32 | )); |
||
| 33 | } |
||
| 34 | } |
||
| 35 |