bootstrap.php 285B

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