PHP Classes

File: vendor/nikic/fast-route/src/bootstrap.php

Recommend this page to a friend!
  Classes of uche   Farm Price   vendor/nikic/fast-route/src/bootstrap.php   Download  
File: vendor/nikic/fast-route/src/bootstrap.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Farm Price
API to get the prices from agriculture markets
Author: By
Last change:
Date: 2 years ago
Size: 293 bytes
 

Contents

Class file image Download
<?php

namespace FastRoute;

require
__DIR__ . '/functions.php';

spl_autoload_register(function($class) {
    if (
strpos($class, 'FastRoute\\') === 0) {
       
$name = substr($class, strlen('FastRoute'));
        require
__DIR__ . strtr($name, '\\', DIRECTORY_SEPARATOR) . '.php';
    }
});