rename 1 method to avoid conflicts with symfony

epel9
Remi Collet 8 years ago
parent 9a89a1d910
commit 89cf19f840

@ -19,3 +19,25 @@ index c8e53e4..f71f150 100644
$this->assertArrayHasKey(__DIR__.'/fixtures/Foo', $classmap); $this->assertArrayHasKey(__DIR__.'/fixtures/Foo', $classmap);
$this->assertArrayHasKey(__DIR__.'/fixtures/Foo2', $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);

@ -32,7 +32,7 @@
Name: php-%{composer_vendor}-%{composer_project} Name: php-%{composer_vendor}-%{composer_project}
Version: %{github_version} Version: %{github_version}
Release: 2%{?github_release}%{?dist} Release: 3%{?github_release}%{?dist}
Summary: Fedora Autoloader Summary: Fedora Autoloader
Group: Development/Libraries Group: Development/Libraries
@ -143,6 +143,9 @@ fi
%changelog %changelog
* Tue Oct 25 2016 Remi Collet <remi@fedoraproject.org> - 0.1.2-3
- rename 1 method to avoid conflicts with symfony
* Sat Oct 22 2016 Remi Collet <remi@fedoraproject.org> - 0.1.2-2 * Sat Oct 22 2016 Remi Collet <remi@fedoraproject.org> - 0.1.2-2
- ensure we use newly installed autoloader in buildroot - ensure we use newly installed autoloader in buildroot

Loading…
Cancel
Save