ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
RouteGroupInterface.php
Go to the documentation of this file.
1 <?php
9 namespace Slim\Interfaces;
10 
11 use Slim\App;
12 
20 {
26  public function getPattern();
27 
35  public function add($callable);
36 
45  public function __invoke(App $app);
46 }
Slim Framework (https://slimframework.com)
Definition: App.php:46
add($callable)
Prepend middleware to the group middleware collection.
getPattern()
Get route pattern.
__invoke(App $app)
Execute route group callable in the context of the Slim App.