Привет.
Парни, как мне в choicestype подгрузить свои категории?
$builder->add('category_id', ChoiceType::class, [
'choices' =>$this->getCategory(),
'by_reference' => false,
'placeholder' => 'Выбрать категорию',
'required' => false,
'label' => 'Категория',
]);
public function getCategory(){
$w = new \Doctrine\ORM\EntityRepository;
return $w->get('doctrine')->getRepository(\Backend\Modules\Asaf\Domain\Categorys\Category::class)->getAllCategoryActive(true);
}
Ошибка:
Type error: Too few arguments to function Doctrine\ORM\EntityRepository::__construct(), 0 passed in /opt/lampp/htdocs/imoscow/src/Backend/Modules/Asaf/Domain/Products/ProductType.php on line 107 and exactly 2 expected
И у меня затык(((