mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 02:06:23 +02:00
15 lines
202 B
PHP
15 lines
202 B
PHP
<?php
|
|
|
|
namespace Infinito\Domain\ProcessManagement;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface ProcessServiceInterface
|
|
{
|
|
/**
|
|
* @todo specify return type
|
|
*/
|
|
public function process();
|
|
}
|