From 5708434b7e3a2ddb350a4cba8bacf139becc215d Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 23 Jan 2020 19:20:00 +0100 Subject: [PATCH] added default preloader --- preload.php | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 preload.php diff --git a/preload.php b/preload.php new file mode 100644 index 000000000..68a925a27 --- /dev/null +++ b/preload.php @@ -0,0 +1,37 @@ +includePath(__DIR__ . '/Account') + ->includePath(__DIR__ . '/Asset') + ->includePath(__DIR__ . '/Auth') + ->includePath(__DIR__ . '/Cache') + ->includePath(__DIR__ . '/Config') + ->includePath(__DIR__ . '/Contract') + ->includePath(__DIR__ . '/DataStorage') + ->includePath(__DIR__ . '/Dispatcher') + ->includePath(__DIR__ . '/Event') + ->includePath(__DIR__ . '/Localization') + ->includePath(__DIR__ . '/Log') + ->includePath(__DIR__ . '/Message') + ->includePath(__DIR__ . '/Model') + ->includePath(__DIR__ . '/Module') + ->includePath(__DIR__ . '/Router') + ->includePath(__DIR__ . '/Stdlib') + ->includePath(__DIR__ . '/Uri') + ->includePath(__DIR__ . '/Views') + ->load();