Quellcode durchsuchen

[HttpKernel] fixed typo

Fabien Potencier vor 14 Jahren
Ursprung
Commit
677a072554
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      src/Symfony/Component/HttpKernel/Profiler/PdoProfilerStorage.php

+ 1 - 1
src/Symfony/Component/HttpKernel/Profiler/PdoProfilerStorage.php

@@ -198,7 +198,7 @@ abstract class PdoProfilerStorage implements ProfilerStorageInterface
             $profile->setParent($parent);
         }
 
-        $profile->setChildren($this->readChildren($token, $parent));
+        $profile->setChildren($this->readChildren($token, $profile));
 
         return $profile;
     }