Преглед изворни кода

[HttpKernel] fixed missing init for Profile children property

Fabien Potencier пре 13 година
родитељ
комит
3d7510e921
1 измењених фајлова са 1 додато и 0 уклоњено
  1. 1 0
      src/Symfony/Component/HttpKernel/Profiler/Profile.php

+ 1 - 0
src/Symfony/Component/HttpKernel/Profiler/Profile.php

@@ -32,6 +32,7 @@ class Profile implements \Serializable
     {
         $this->token = $token;
         $this->collectors = array();
+        $this->children = array();
     }
 
     /**