mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 10:16:22 +02:00
23 lines
468 B
PHP
23 lines
468 B
PHP
<?php
|
|
|
|
namespace Infinito\Domain\Action\Create;
|
|
|
|
use Infinito\Domain\Action\AbstractAction;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
abstract class AbstractCreateAction extends AbstractAction implements CreateActionInterface
|
|
{
|
|
/**
|
|
* In general everybody should be allowed to create everything!
|
|
* {@inheritdoc}
|
|
*
|
|
* @see \Infinito\Domain\Action\AbstractAction::isSecure()
|
|
*/
|
|
protected function isSecure(): bool
|
|
{
|
|
return true;
|
|
}
|
|
}
|