mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 06:27:24 +01:00
18 lines
250 B
PHP
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;
|
|
}
|
|
|