-
- Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpreload.php
More file actions
21 lines (17 loc) · 519 Bytes
/
preload.php
File metadata and controls
21 lines (17 loc) · 519 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
/**
* Z-Engine framework
*
* @copyright Copyright 2019, Lisachenko Alexander <lisachenko.it@gmail.com>
*
* This source file is subject to the license that is bundled
* with this source code in the file LICENSE.
*/
declare(strict_types=1);
include __DIR__.'/vendor/autoload.php';
use ZEngine\Core;
/**
* This file should be loaded during the preload stage, which is defined by opcache.preload file.
* Either include it manually, or just add following line into your init section.
*/
Core::preload();