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,25 @@
<?php
namespace Infinito\Domain\Action;
/**
* This class just containes the constructor
* It is used by concrete actions and the factory.
*
* @author kevinfrantz
*/
abstract class AbstractActionConstructor
{
/**
* @var ActionDependenciesDAOServiceInterface
*/
protected $actionService;
/**
* @param ActionDependenciesDAOServiceInterface $actionService
*/
final public function __construct(ActionDependenciesDAOServiceInterface $actionService)
{
$this->actionService = $actionService;
}
}