Passed
Push — master ( 5f4a84...116a85 )
by Slye
02:07 queued 55s
created
Labels
Severity
1
<?php
2
3
use NDC\{
4
	FileManager, System
0 ignored issues
show
The type NDC\System was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
5
};
6
7
require 'vendor/autoload.php';
8
$system      = new System();
9
$fileManager = new FileManager();
10
11
$system->checkRequirements();
12
$system->process();
13
$fileManager->removeOldFilesByIntervalDays();
14