ILIAS  trunk Revision v11.0_alpha-1749-g1a06bdef097
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Factory.php
Go to the documentation of this file.
1 <?php
2 
19 namespace ILIAS\StaticURL\Response;
20 
24 class Factory
25 {
26  public function cannot(): CannotHandle
27  {
28  return new CannotHandle();
29  }
31  {
32  return new MaybeCanHandlerAfterLogin();
33  }
34 
35  public function can(string $uri_path): CanHandleWithURIPath
36  {
37  return new CanHandleWithURIPath($uri_path);
38  }
39 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...