| Total Complexity | 4 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class CampaignConfigurationLoader { |
||
| 15 | |||
| 16 | private const SEASONAL_IMPRESSION_LIMIT = 10; |
||
| 17 | |||
| 18 | private $fileSystem; |
||
| 19 | private $fileFetcher; |
||
| 20 | |||
| 21 | public function __construct( Filesystem $fileSystem, FileFetcher $fileFetcher ) { |
||
| 24 | } |
||
| 25 | |||
| 26 | private function loadFiles( string ...$configFiles ): array { |
||
| 34 | } |
||
| 35 | } |
This check looks for private methods that have been defined, but are not used inside the class.