Total Complexity | 4 |
Total Lines | 45 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | trait DeprecatedRoaTrait |
||
10 | { |
||
11 | /** |
||
12 | * @param $name |
||
13 | * @param $value |
||
14 | * |
||
15 | * @return $this |
||
16 | * @deprecated |
||
17 | * @codeCoverageIgnore |
||
18 | */ |
||
19 | public function putPathParameter($name, $value) |
||
20 | { |
||
21 | return $this->pathParameter($name, $value); |
||
|
|||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @param $pathPattern |
||
26 | * |
||
27 | * @return $this |
||
28 | * @deprecated |
||
29 | * @codeCoverageIgnore |
||
30 | */ |
||
31 | public function setUriPattern($pathPattern) |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * @return string |
||
38 | * @deprecated |
||
39 | * @codeCoverageIgnore |
||
40 | */ |
||
41 | public function getUriPattern() |
||
42 | { |
||
43 | return $this->pathPattern; |
||
44 | } |
||
45 | |||
46 | /** |
||
47 | * @return array |
||
48 | * @deprecated |
||
49 | * @codeCoverageIgnore |
||
50 | */ |
||
51 | public function getPathParameters() |
||
54 | } |
||
55 | } |
||
56 |