Pleets /
SQLWebManager
| 1 | <?php |
||
| 2 | |||
| 3 | chdir(dirname(__DIR__)); |
||
| 4 | |||
| 5 | // Set localtime zone |
||
| 6 | date_default_timezone_set("America/Bogota"); |
||
| 7 | |||
| 8 | // Memory limit |
||
| 9 | ini_set("memory_limit","256M"); |
||
| 10 | |||
| 11 | // Run application |
||
| 12 | require_once("vendor/autoload.php"); |
||
| 13 | |||
| 14 | try { |
||
| 15 | $mvc = new Drone\Mvc\Application(include "config/application.config.php"); |
||
| 16 | $mvc->run(); |
||
| 17 | } |
||
| 18 | catch (Drone\Mvc\PageNotFoundException $e) |
||
|
0 ignored issues
–
show
|
|||
| 19 | { |
||
| 20 | die('Error 404 (Page Not Found)!!'); |
||
| 21 | } |
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