ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
Handler.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
27
31interface Handler
32{
33 public function __construct();
34
35 public function getNamespace(): string;
36
37 public function canHandle(Request $request): bool;
38
39 public function handle(Request $request, Context $context, Factory $response_factory): Response;
40
41}
handle(Request $request, Context $context, Factory $response_factory)
$context
Definition: webdav.php:31