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