Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function __construct($successful, $methodNotAllowed, $resourceNotFound, array $allowedMethods, array $target, array $parameters) |
||
14 | { |
||
15 | $this->successful = $successful; |
||
16 | $this->methodNotAllowed = $methodNotAllowed; |
||
17 | $this->resourceNotFound = $resourceNotFound; |
||
18 | $this->allowedMethods = $allowedMethods; |
||
19 | $this->target = $target; |
||
20 | $this->parameters = $parameters; |
||
21 | } |
||
22 | |||
71 |