infinito/application/src/Controller/ActivationInterface.php
2018-09-05 15:46:14 +02:00

18 lines
250 B
PHP

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