Total Complexity | 4 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | class ClassHelper |
||
24 | { |
||
25 | // Public Static Methods |
||
26 | // ========================================================================= |
||
27 | |||
28 | /** |
||
29 | * Return an array of classes in the same namespace as $className, in an |
||
30 | * array of shortName => fullyQualifiedName |
||
31 | * |
||
32 | * @param string $className |
||
33 | * |
||
34 | * @return array |
||
35 | */ |
||
36 | public static function getClassesInNamespace(string $className): array |
||
59 |