mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-14 02:45:19 +01:00
22 lines
458 B
PHP
22 lines
458 B
PHP
<?php
|
|
|
|
namespace App\Domain\ActionManagement\Create;
|
|
|
|
use App\Domain\ActionManagement\AbstractAction;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
abstract class AbstractCreateAction extends AbstractAction implements CreateActionInterface
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*
|
|
* @see \App\Domain\ActionManagement\AbstractAction::isSecure()
|
|
*/
|
|
protected function isSecure(): bool
|
|
{
|
|
return $this->actionService->isRequestedActionSecure();
|
|
}
|
|
}
|