summaryrefslogtreecommitdiffstats
path: root/php-fedora-autoloader.patch
diff options
context:
space:
mode:
Diffstat (limited to 'php-fedora-autoloader.patch')
-rw-r--r--php-fedora-autoloader.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/php-fedora-autoloader.patch b/php-fedora-autoloader.patch
index c2406cd..b711daa 100644
--- a/php-fedora-autoloader.patch
+++ b/php-fedora-autoloader.patch
@@ -19,3 +19,25 @@ index c8e53e4..f71f150 100644
$this->assertArrayHasKey(__DIR__.'/fixtures/Foo', $classmap);
$this->assertArrayHasKey(__DIR__.'/fixtures/Foo2', $classmap);
}
+diff --git a/src/Autoload.php b/src/Autoload.php
+index 5d08c84..9f85edd 100644
+--- a/src/Autoload.php
++++ b/src/Autoload.php
+@@ -209,7 +209,7 @@ class Autoload
+ */
+ public static function loadClass($class)
+ {
+- if ($file = static::findFile($class)) {
++ if ($file = static::findFileForClass($class)) {
+ includeFile($file);
+ }
+ }
+@@ -219,7 +219,7 @@ class Autoload
+ *
+ * Checks for a classmap and then loops through PSR-4 mappings.
+ */
+- public static function findFile($class)
++ public static function findFileForClass($class)
+ {
+ $class = ltrim($class, '\\');
+ $lower = strtolower($class);