PHP Classes

File: tests/autoload.php

Recommend this page to a friend!
  Classes of Aleksey   PHP MVC Project   tests/autoload.php   Download  
File: tests/autoload.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP MVC Project
Framework that implements the MVC design pattern
Author: By
Last change:
Date: 5 years ago
Size: 199 bytes
 

Contents

Class file image Download
<?php

require_once __DIR__ . '/../vendor/autoload.php';

$classLoader = new \Composer\Autoload\ClassLoader();
$classLoader->addPsr4("PhpMvcTest\\", __DIR__ . '/mvc', true);
$classLoader->register();