| Total Complexity | 10 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | class Application |
||
| 27 | { |
||
| 28 | /** |
||
| 29 | * Application constructor. |
||
| 30 | */ |
||
| 31 | public function __construct() |
||
| 32 | { |
||
| 33 | defined('DS') ?: define('DS', DIRECTORY_SEPARATOR); |
||
| 34 | defined('ENVROOT') ?: define('ENVROOT', dirname(__DIR__) . DS); |
||
| 35 | if (file_exists(ENVROOT . '.env')) { |
||
| 36 | $dotenv = new Dotenv(ENVROOT); |
||
| 37 | try { |
||
| 38 | $dotenv->load(); |
||
| 39 | } catch (InvalidFileException $e) { |
||
| 40 | } catch (InvalidPathException $e) { |
||
| 41 | } |
||
| 42 | } |
||
| 43 | |||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @throws \ErrorException |
||
| 48 | */ |
||
| 49 | public function run() |
||
| 64 | } |
||
| 65 | } |
||
| 66 |
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:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths