diff options
Diffstat (limited to 'plugins/jobs/oooold/tests/bootstrap.php')
-rw-r--r-- | plugins/jobs/oooold/tests/bootstrap.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/plugins/jobs/oooold/tests/bootstrap.php b/plugins/jobs/oooold/tests/bootstrap.php new file mode 100644 index 00000000..b25fdc9d --- /dev/null +++ b/plugins/jobs/oooold/tests/bootstrap.php @@ -0,0 +1,16 @@ +<?php + +/** + * Spiral Framework. + * + * @license MIT + * @author Anton Titov (Wolfy-J) + */ + +declare(strict_types=1); + +error_reporting(E_ALL | E_STRICT); +ini_set('display_errors', 'stderr'); + +//Composer +require dirname(__DIR__) . '/vendor_php/autoload.php'; |