Skip to content

Commit

Permalink
[TASK] Add request to FormControllerFormActionEvent
Browse files Browse the repository at this point in the history
  • Loading branch information
sypets committed Oct 17, 2024
1 parent b0647a7 commit 33d9824
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Classes/Events/FormControllerFormActionEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

use In2code\Powermail\Controller\FormController;
use In2code\Powermail\Domain\Model\Form;
use TYPO3\CMS\Extbase\Mvc\RequestInterface;
use TYPO3Fluid\Fluid\View\ViewInterface;

final class FormControllerFormActionEvent
Expand Down Expand Up @@ -59,4 +60,9 @@ public function getView(): ViewInterface
{
return $this->view;

Check failure on line 61 in Classes/Events/FormControllerFormActionEvent.php

View workflow job for this annotation

GitHub Actions / PHPstan

Access to an undefined property In2code\Powermail\Events\FormControllerFormActionEvent::$view.
}

public function getRequest(): RequestInterface
{
return $this->request;

Check failure on line 66 in Classes/Events/FormControllerFormActionEvent.php

View workflow job for this annotation

GitHub Actions / PHPstan

Access to an undefined property In2code\Powermail\Events\FormControllerFormActionEvent::$request.
}
}

0 comments on commit 33d9824

Please sign in to comment.