Advertisement
Danack

phpunit autoloader

Oct 25th, 2013
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. require_once("vendor/autoload.php");
  5.  
  6. function loader($class)
  7. {
  8. $file = $class . '.php';
  9. if (file_exists($file)) {
  10. require $file;
  11. }
  12. }
  13.  
  14. spl_autoload_register('loader');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement