Explorar o código

[FrameworkBundle] fixed error with arg reversing from previous changes

Daniel Holmes %!s(int64=14) %!d(string=hai) anos
pai
achega
0b65923c37
Modificáronse 1 ficheiros con 3 adicións e 3 borrados
  1. 3 3
      src/Symfony/Bundle/FrameworkBundle/Test/WebTestCase.php

+ 3 - 3
src/Symfony/Bundle/FrameworkBundle/Test/WebTestCase.php

@@ -88,10 +88,10 @@ abstract class WebTestCase extends BaseWebTestCase
     private function getPhpUnitCliConfigArgument()
     {
         $dir = null;
-        
-        foreach (array_reverse($_SERVER['argv']) as $argIndex=>$testArg) {
+        $reversedArgs = array_reverse($_SERVER['argv']);
+        foreach ($reversedArgs as $argIndex=>$testArg) {
             if ($testArg === '-c' || $testArg === '--configuration') {
-                $dir = realpath($_SERVER['argv'][$argIndex + 1]);
+                $dir = realpath($reversedArgs[$argIndex - 1]);
                 break;
             } else if (strpos($testArg, '--configuration=') === 0) {
                 $argPath = substr($testArg, strlen('--configuration='));