ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
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