| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public static function validateNamespace($namespace) |
||
| 19 | { |
||
| 20 | if (in_array(substr_count($namespace, '\\'), [0, 1])) { |
||
| 21 | $message = "It seems your namespace is formed incorrectly.\n" |
||
| 22 | . "Possible examples are NameSpace\\\\ or NameSpace\\\\Folder\\\\\n" |
||
| 23 | . "[Double backslashes]"; |
||
| 24 | throw new RuntimeException($message); |
||
| 25 | } |
||
| 26 | |||
| 27 | return true; |
||
| 28 | } |
||
| 29 | |||
| 45 |