Symfony\Component\Form\FormBuilder::resolveChildren PHP Метод

resolveChildren() приватный Метод

Converts all unresolved children into {@link FormBuilder} instances.
private resolveChildren ( )
    private function resolveChildren()
    {
        foreach ($this->unresolvedChildren as $name => $info) {
            $this->children[$name] = $this->create($name, $info['type'], $info['options']);
        }

        $this->unresolvedChildren = array();
    }