Browse Source

Merge pull request #171 from daniels0xff/develop

Develop
Taylor Otwell 12 years ago
parent
commit
b0ffc0183a
2 changed files with 4 additions and 3 deletions
  1. 2 1
      .gitignore
  2. 2 2
      laravel/autoloader.php

+ 2 - 1
.gitignore

@@ -1 +1,2 @@
-favicon.*
+favicon.*
+.DS_Store

+ 2 - 2
laravel/autoloader.php

@@ -53,8 +53,8 @@ class Autoloader {
 	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));