| 1 | <?php |
||
| 19 | class ExtensionManager |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var Extension[] |
||
| 23 | */ |
||
| 24 | private $extensions = []; |
||
| 25 | |||
| 26 | public function add(Extension $extension): void |
||
| 30 | |||
| 31 | public function processBefore(ServerRequestInterface $request, Authorization $authorization): Authorization |
||
| 39 | |||
| 40 | public function processAfter(ServerRequestInterface $request, Authorization $authorization): Authorization |
||
| 48 | } |
||
| 49 |