mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Renamed domain ActionManagement to Action
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user