fix person document controller definition

This commit is contained in:
2020-07-28 13:41:20 +02:00
parent 4527ed35a3
commit a4798e39b1
2 changed files with 8 additions and 3 deletions

View File

@@ -49,8 +49,11 @@ class DocumentPersonController extends Controller
* @param EventDispatcherInterface $eventDispatcher
* @param AuthorizationHelper $authorizationHelper
*/
public function __construct(TranslatorInterface $translator, EventDispatcherInterface $eventDispatcher, AuthorizationHelper $authorizationHelper)
{
public function __construct(
TranslatorInterface $translator,
EventDispatcherInterface $eventDispatcher,
AuthorizationHelper $authorizationHelper
) {
$this->translator = $translator;
$this->eventDispatcher = $eventDispatcher;
$this->authorizationHelper = $authorizationHelper;