Symfony\Component\Form\Extension\DataCollector\FormDataCollector::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( Symfony\Component\Form\Extension\DataCollector\FormDataExtractorInterface $dataExtractor )
$dataExtractor Symfony\Component\Form\Extension\DataCollector\FormDataExtractorInterface
    public function __construct(FormDataExtractorInterface $dataExtractor)
    {
        $this->dataExtractor = $dataExtractor;
        $this->data = array(
            'forms' => array(),
            'forms_by_hash' => array(),
            'nb_errors' => 0,
        );
    }