weitere updates für instanzierbarkeit und sauberes testing

This commit is contained in:
2026-02-24 08:49:40 +01:00
parent 7b53faca37
commit 16759a2732
119 changed files with 6371 additions and 745 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace MintyPHP\Service\Access;
interface AuthorizationPolicyInterface
{
public function supports(string $ability): bool;
public function authorize(string $ability, array $context = []): AuthorizationDecision;
}