Added headLink, headMeta, and headScript to layout for added flexibility
[zf2.biz/application_blanche.git] / modules / Application / autoload_function.php
1 <?php
2 return function ($class) {
3     static $map;
4     if (!$map) {
5         $map = include __DIR__ . '/autoload_classmap.php';
6     }
7
8     if (!isset($map[$class])) {
9         return false;
10     }
11     return include $map[$class];
12 };