-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.php
More file actions
24 lines (24 loc) · 821 Bytes
/
init.php
File metadata and controls
24 lines (24 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
/**
*
*/
include __DIR__ . '/src/Facade/App.php';
include __DIR__ . '/src/Facade/Config.php';
include __DIR__ . '/src/Facade/Log.php';
include __DIR__ . '/src/Facade/Message.php';
include __DIR__ . '/src/Facade/Request.php';
include __DIR__ . '/src/Facade/Response.php';
include __DIR__ . '/src/Facade/Route.php';
include __DIR__ . '/src/Facade/Service.php';
include __DIR__ . '/src/Facade/Session.php';
include __DIR__ . '/src/Facade/View.php';
include __DIR__ . '/src/App.php';
include __DIR__ . '/src/Config.php';
include __DIR__ . '/src/Log.php';
include __DIR__ . '/src/Message.php';
include __DIR__ . '/src/Request.php';
include __DIR__ . '/src/Response.php';
include __DIR__ . '/src/Route.php';
include __DIR__ . '/src/Service.php';
include __DIR__ . '/src/Session.php';
include __DIR__ . '/src/View.php';