Conditions | 6 |
Paths | 4 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
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 | } |
||
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