1 | <?php |
||
5 | class MiddlewareRequest |
||
6 | { |
||
7 | protected $name; |
||
8 | |||
9 | protected $arguments; |
||
10 | |||
11 | protected $options; |
||
12 | |||
13 | protected function __construct($name, $arguments, $options) |
||
19 | |||
20 | public static function newRequest($name, $arguments, $options) |
||
25 | |||
26 | public function getRequest() |
||
30 | |||
31 | public function setRequest($request) |
||
37 | |||
38 | public function getName() |
||
42 | |||
43 | public function getOptions() |
||
47 | |||
48 | public function getArguments() |
||
52 | } |
||
53 |