PHP Classes

File: public/index.php

Recommend this page to a friend!
  Classes of Cauê Santana   PHP RESTful API   public/index.php   Download  
File: public/index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP RESTful API
API application that uses the MVC design pattern
Author: By
Last change:
Date: Yesterday
Size: 191 bytes
 

Contents

Class file image Download
<?php

require_once __DIR__ . '/../vendor/autoloader.php';
require_once
__DIR__ . '/../routes/web.php';

use
RestfulAPI\Utils\Env;
use
RestfulAPI\Core\Core;

Env::load();
Core::run($router);