mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
33 lines
491 B
PHP
33 lines
491 B
PHP
<?php
|
|
namespace App\Controller;
|
|
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
|
|
/**
|
|
*
|
|
* @author kevinfrantz
|
|
*
|
|
*/
|
|
class SourceController implements SourceControllerInterface
|
|
{
|
|
public function modify(int $id): Response
|
|
{}
|
|
|
|
public function show(int $id): Response
|
|
{}
|
|
|
|
public function activate(): Response
|
|
{}
|
|
|
|
public function create(): Response
|
|
{}
|
|
|
|
public function delete(): Response
|
|
{}
|
|
|
|
public function deactivate(): Response
|
|
{}
|
|
|
|
}
|
|
|