Skip to content

Instantly share code, notes, and snippets.

@ilhanyumer
Created December 9, 2013 23:21
Show Gist options
  • Save ilhanyumer/7882935 to your computer and use it in GitHub Desktop.
Save ilhanyumer/7882935 to your computer and use it in GitHub Desktop.
<?php
spl_autoload_register(function ($class)
{
if (0 === strpos($class, 'Pomm\\'))
{
$class = str_replace('\\', '/', $class);
require sprintf("%s/%s.php", __DIR__, $class);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment