Sophie

Sophie

distrib > Fedora > 17 > i386 > by-pkgid > c61d4f6ebdf1195572fd2e80eca48bb0 > files > 2

php-symfony2-OptionsResolver-2.1.8-1.fc17.src.rpm

--- Symfony/Component/OptionsResolver/Tests/bootstrap.php	2012-09-20 03:42:16.000000000 -0400
+++ Symfony/Component/OptionsResolver/Tests/bootstrap.php	2012-10-08 17:43:39.793922871 -0400
@@ -10,9 +10,18 @@
  */
 
 spl_autoload_register(function ($class) {
-    if (0 === strpos(ltrim($class, '/'), 'Symfony\Component\OptionsResolver')) {
-        if (file_exists($file = __DIR__.'/../'.substr(str_replace('\\', '/', $class), strlen('Symfony\Component\OptionsResolver')).'.php')) {
-            require_once $file;
+    if (0 === strpos(ltrim($class, '/'), 'Symfony\Component')) {
+        $file = substr(str_replace('\\', '/', $class), strlen('Symfony\Component')).'.php';
+        if (file_exists(__DIR__.'/../..'.$file)) {
+            // Load from source tree
+            require_once __DIR__.'/../..'.$file;
+        } else {
+            try {
+                // Try loading from incude path
+                require_once 'Symfony/Component'.$file;
+            } catch (Exception $e) {
+                // Fail silently so class not found fatal error still raised
+            }
         }
     }
 });