for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Romm\Formz\Controller;
use TYPO3\CMS\Core\SingletonInterface;
use TYPO3\CMS\Extbase\Mvc\Controller\Arguments;
use TYPO3\CMS\Extbase\Mvc\Web\Request;
class FormzControllerContext implements SingletonInterface
{
/**
* @var bool
*/
protected $dispatched = false;
* @var Request
protected $request;
* @var Arguments
protected $arguments;
* @return boolean
public function isDispatched()
return $this->dispatched;
}
* @param boolean $dispatched
public function setDispatched($dispatched)
$this->dispatched = $dispatched;
* @return Request
public function getRequest()
return $this->request;
* @param Request $request
public function setRequest(Request $request)
$this->request = $request;
* @return Arguments
public function getArguments()
return $this->arguments;
* @param Arguments $arguments
public function setArguments(Arguments $arguments)
$this->arguments = $arguments;