@@ -1,20 +1,20 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * @package CleverStyle CMS |
|
4 | - * @author Nazar Mokrynskyi <[email protected]> |
|
5 | - * @copyright Copyright (c) 2011-2016, Nazar Mokrynskyi |
|
6 | - * @license MIT License, see license.txt |
|
7 | - */ |
|
3 | + * @package CleverStyle CMS |
|
4 | + * @author Nazar Mokrynskyi <[email protected]> |
|
5 | + * @copyright Copyright (c) 2011-2016, Nazar Mokrynskyi |
|
6 | + * @license MIT License, see license.txt |
|
7 | + */ |
|
8 | 8 | namespace cs; |
9 | 9 | require __DIR__.'/loader_base.php'; //Inclusion of loader base |
10 | 10 | require __DIR__.'/functions_global.php'; //Inclusion of functions that work with global state |
11 | 11 | /** |
12 | - * Wrapper around default `$_SERVER` superglobal |
|
13 | - */ |
|
12 | + * Wrapper around default `$_SERVER` superglobal |
|
13 | + */ |
|
14 | 14 | $_SERVER = new _SERVER($_SERVER); |
15 | 15 | /** |
16 | - * Including of custom files |
|
17 | - */ |
|
16 | + * Including of custom files |
|
17 | + */ |
|
18 | 18 | foreach (glob(CUSTOM.'/*.php') ?: [] as $custom) { |
19 | 19 | include $custom; |
20 | 20 | } |