Showing 22 of 22 total issues
Function initializeBaseUrl
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
Open
protected function initializeBaseUrl() { $protocol = $this->configuration['protocol'] ?? ''; if ($protocol == 'auto') { $protocol = GeneralUtility::getIndpEnv('TYPO3_SSL') ? 'https://' : 'http://';
- Read upRead up
Function renameFolder
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
Open
public function renameFolder($folderIdentifier, $newName) { $this->resetIdentifierMap(); $newName = $this->sanitizeFileName($newName);
- Read upRead up