In this repo i store all my websites, each in a different branch
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

11 rader
373 B

  1. <?php
  2. require_once __DIR__ . '/../src/functions.php';
  3. spl_autoload_register(function($class) {
  4. if (strpos($class, 'FastRoute\\') === 0) {
  5. $dir = strcasecmp(substr($class, -4), 'Test') ? 'src/' : 'test/';
  6. $name = substr($class, strlen('FastRoute'));
  7. require __DIR__ . '/../' . $dir . strtr($name, '\\', DIRECTORY_SEPARATOR) . '.php';
  8. }
  9. });