Optimized Actions, Tests and renamed LIST to THREAD out of php incompatibility reasons

This commit is contained in:
Kevin Frantz
2019-01-27 20:28:31 +01:00
parent c2d0c5f60d
commit 81dd63c152
12 changed files with 95 additions and 15 deletions

View File

@@ -7,6 +7,15 @@ use App\Domain\ActionManagement\AbstractAction;
/**
* @author kevinfrantz
*/
abstract class AbstractCreateAction extends AbstractAction
abstract class AbstractCreateAction extends AbstractAction implements CreateActionInterface
{
/**
* {@inheritdoc}
*
* @see \App\Domain\ActionManagement\AbstractAction::isSecure()
*/
protected function isSecure(): bool
{
return $this->actionService->isRequestedActionSecure();
}
}