infinito/application/src/Controller/CreationInterface.php
Marco Petersen f1b9ffd160 Format code
2018-09-12 23:25:22 +03:00

16 lines
226 B
PHP

<?php
namespace App\Controller;
use Symfony\Component\HttpFoundation\Response;
/**
* @author kevinfrantz
*/
interface CreationInterface
{
public function create(): Response;
public function delete(): Response;
}