Renamed domain DataAccessManagement to DataAccess

This commit is contained in:
Kevin Frantz
2019-05-30 19:23:49 +02:00
parent 8210daf7bc
commit be5b69fcff
13 changed files with 20 additions and 20 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace Infinito\Domain\DataAccess;
/**
* @author kevinfrantz
*/
interface ActionsResultsDAOServiceInterface extends ActionsDAOInterface
{
/**
* @param string $actionType
* @param mixed $data The data which a Template needs to be handled
*/
public function setData(string $actionType, $data): void;
}