* @author Aeneas Rekkas * @author Daniel Gimenes * @license MIT */ interface AssertionInterface { /** * Check if this assertion is true * * @TODO: for v3, update the interface to typehint to AuthorizationServiceInterface instead * * @param AuthorizationService $authorizationService * @param mixed $context * @return bool */ public function assert(AuthorizationService $authorizationService); }