Не понимаю что делать с getParameter. Где его определять?
Attempted to call an undefined method named "getParameter" of class "App\Controller\UserController".
Подключаю по примеру
symfony.com/doc/4.1/controller/upload_file.html
путь к директории прописывается:
vich_uploader.yaml
vich_uploader:
mappings:
users:
uri_prefix: /images/users
upload_destination: '%kernel.project_dir%/public/images/users'
UserController.php
$file->move(
$this->getParameter('upload_destination'), -- ошибка
# '../public/images/users/', -- ок
$fileName
);