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