| Conditions | 2 |
| Paths | 2 |
| Total Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public static function ambientIsNotInstanceOfAmbientInterface($ambient) |
||
| 33 | { |
||
| 34 | $ambient = is_object($ambient) ? get_class($ambient) : print_r($ambient, true); |
||
| 35 | throw new ConsoleException('The ambient class indicated is not a vlid ambient: ' . $ambient, ExceptionCodes::AMBIENT_IS_NOT_VALID); |
||
| 36 | } |
||
| 37 | } |