Renamed domain ActionManagement to Action

This commit is contained in:
Kevin Frantz
2019-05-30 16:03:44 +02:00
parent d2b0cba30b
commit 123df1147a
36 changed files with 112 additions and 112 deletions

View File

@@ -0,0 +1,22 @@
<?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;
}
}