17 lines
294 B
PHP
17 lines
294 B
PHP
<?php
|
|
|
|
namespace App\RequiredTeamerCheck;
|
|
|
|
use App\Entity\User;
|
|
|
|
interface RequiredTeamerCheckInterface
|
|
{
|
|
public function getCode(): string;
|
|
|
|
public function appliesTo(User $user): bool;
|
|
|
|
public function isSatisfied(User $user): bool;
|
|
|
|
public function getRouteName(): string;
|
|
}
|