ILIAS  trunk Revision v12.0_alpha-1338-g8f7e531aa3c
CanHandleWithURIPath.php
Go to the documentation of this file.
1<?php
2
20
30{
31 public function __construct(
32 private string $uri_path,
33 private int $shift = 0
34 ) {
35 }
36
37 public function getURIPath(): ?string
38 {
39 return $this->uri_path;
40 }
41
42 public function targetCanBeReached(): bool
43 {
44 return true;
45 }
46
47 public function shift(): int
48 {
49 return $this->shift;
50 }
51
52}
Returned by a Handler when it has successfully resolved the Request.
__construct(private string $uri_path, private int $shift=0)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...