| 1 | <?php |
||
| 13 | class SettingsHelper |
||
| 14 | { |
||
| 15 | const SETTINGS_XML_FILE_PATH = 'settings.xml'; |
||
| 16 | |||
| 17 | /** Definition of XML nodes name and attribute used to parse settings data */ |
||
| 18 | const XML_NODE_CONFIG_ITEM = 'config:config-item'; |
||
| 19 | const XML_ATTRIBUTE_CONFIG_NAME = 'config:name'; |
||
| 20 | const XML_ATTRIBUTE_VALUE_ACTIVE_TABLE = 'ActiveTable'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param string $filePath Path of the file to be read |
||
| 24 | * @return string|null Name of the sheet that was defined as active or NULL if none found |
||
| 25 | */ |
||
| 26 | 90 | public function getActiveSheetName($filePath) |
|
| 50 | } |
||
| 51 |
Scrutinizer analyzes your
composer.json/composer.lockfile if available to determine the classes, and functions that are defined by your dependencies.It seems like the listed class was neither found in your dependencies, nor was it found in the analyzed files in your repository. If you are using some other form of dependency management, you might want to disable this analysis.