Issues (186)

ext_localconf.php (1 issue)

1
<?php
2
3
if (!defined('TYPO3_MODE')) {
4
    throw new \Exception('Access denied.');
5
}
6
7
\CuyZ\Notiz\Service\Extension\LocalConfigurationService::get()->process();
0 ignored issues
show
It seems like process() must be provided by classes using this trait. How about adding it as abstract method to this trait? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

7
\CuyZ\Notiz\Service\Extension\LocalConfigurationService::get()->/** @scrutinizer ignore-call */ process();
Loading history...
8