PHP Classes

File: system.php

Recommend this page to a friend!
  Classes of Muhammad Umer Farooq   Zest   system.php   Download  
File: system.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Zest
Application to show the use of the Zest framework
Author: By
Last change: Merge pull request #16 from saravanadev/master

folder naming convention
Add router caching
update
Date: 5 years ago
Size: 437 bytes
 

Contents

Class file image Download
<?php

require_once __DIR__.'/vendor/autoload.php';
$File = new Zest\Files\Files();
$File->systemDirs();
$session = new Zest\Session\Session();
error_reporting(E_ALL);
set_error_handler('Zest\Expection\Expection::errorHandler');
set_exception_handler('Zest\Expection\Expection::exceptionHandler');
$app = (new Zest\Router\App())->run();
$maintenance = (new Zest\Common\Maintenance())->run();
$server = (new Zest\Common\Server())->get();