diff --git a/.gitignore b/.gitignore index b017e3c3..e136a846 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -favicon.* \ No newline at end of file +favicon.* +.DS_Store \ No newline at end of file diff --git a/laravel/autoloader.php b/laravel/autoloader.php index 288e6687..1cbbf4e1 100644 --- a/laravel/autoloader.php +++ b/laravel/autoloader.php @@ -53,8 +53,8 @@ public static function load($class) protected static function find($class) { // After PHP namespaces were introduced, most libaries ditched underscores for - // for namespaces to indicate the class directory hierarchy. We will check for - // the presence of namespace slashes to determine the directory separator. + // namespaces to indicate the class directory hierarchy. We will check for the + // presence of namespace slashes to determine the directory separator. $separator = (strpos($class, '\\') !== false) ? '\\' : '_'; $library = substr($class, 0, strpos($class, $separator));