Symfony\Component\Form\FormBuilder::resolveChild PHP 메소드

resolveChild() 개인적인 메소드

Converts an unresolved child into a {@link FormBuilder} instance.
private resolveChild ( string $name ) : FormBuilder
$name string The name of the unresolved child.
리턴 FormBuilder The created instance.
    private function resolveChild($name)
    {
        $info = $this->unresolvedChildren[$name];
        $child = $this->create($name, $info['type'], $info['options']);
        $this->children[$name] = $child;
        unset($this->unresolvedChildren[$name]);

        return $child;
    }