mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-09 14:07:25 +01:00
Implemented methods in source controller
This commit is contained in:
parent
4ad9a60855
commit
cd9ad70bc2
@ -1,12 +1,32 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace App\Controller;
|
namespace App\Controller;
|
||||||
|
|
||||||
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author kevinfrantz
|
* @author kevinfrantz
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
class SourceController implements NodeControllerInterface
|
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
|
||||||
|
{}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user