bootstrap.php 286B

12345678910111213
  1. <?php
  2. spl_autoload_register(function($class) {
  3. if (0 === strpos($class, 'Exporter\\')) {
  4. $file = __DIR__ . '/../lib/' . str_replace('\\', '/', $class) . '.php';
  5. if (file_exists($file)) {
  6. require_once $file;
  7. return true;
  8. }
  9. }
  10. });