Adds the child token
Parameters
Profile $child The child Profile:
File
- drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Profiler/Profile.php, line 202
Class
- Profile
- Profile.
Namespace
Symfony\Component\HttpKernel\Profiler
Code
public function addChild(Profile $child) {
$this->children[] = $child;
$child
->setParent($this);
}