mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 02:06:23 +02:00
16 lines
343 B
PHP
16 lines
343 B
PHP
<?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;
|
|
}
|