1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24:
<?php
/**
* @author stev leibelt <artodeto@bazzline.net>
* @since 2015-07-01
*/
namespace Net\Bazzline\Component\GenericAgreement\Process;
use Net\Bazzline\Component\GenericAgreement\Exception\ExceptionInterface;
/**
* Interface ExecutableInterface
*
* @package Net\Bazzline\Component\GenericAgreement\Process
*/
interface ExecutableInterface
{
/**
* @param mixed $data
* @return mixed
* @throws ExceptionInterface
*/
public function execute($data);
}