Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
41 | 1 | public static function getSDKEntryPointRegistry(){ |
|
42 | 1 | $entryPoints = array(); |
|
43 | 1 | require __DIR__.DIRECTORY_SEPARATOR.'registry.php'; |
|
44 | 1 | foreach ($entryPoints as $funcName => $className) { |
|
45 | 1 | $className = "SugarAPI\\SDK\\EntryPoint\\" . $className; |
|
46 | 1 | $entryPoints[$funcName] = $className; |
|
47 | 1 | } |
|
48 | 1 | return $entryPoints; |
|
49 | } |
||
50 | |||
51 | } |