1 | <?php |
||
11 | class RouteMatcher |
||
12 | { |
||
13 | /** |
||
14 | * @var null|array $arguments arguments for the callback, extracted |
||
15 | * from path |
||
16 | * @var string $methodMatched the matched method. |
||
17 | * @var string $pathMatched the matched path. |
||
18 | */ |
||
19 | public $arguments = []; |
||
20 | public $methodMatched; |
||
21 | public $pathMatched; |
||
22 | |||
23 | |||
24 | |||
25 | /** |
||
26 | * Check if part of route is a argument and optionally match type |
||
27 | * as a requirement {argument:type}. |
||
28 | * |
||
29 | * @param string $rulePart the rule part to check. |
||
30 | * @param string $queryPart the query part to check. |
||
31 | * @param array &$args add argument to args array if matched |
||
32 | * |
||
33 | * @return boolean |
||
34 | */ |
||
35 | 4 | private function checkPartAsArgument($rulePart, $queryPart, &$args) |
|
54 | |||
55 | |||
56 | |||
57 | /** |
||
58 | * Check if value is matching a certain type of values. |
||
59 | * |
||
60 | * @param string $value the value to check. |
||
61 | * @param array $type the expected type to check against. |
||
62 | * |
||
63 | * @return boolean |
||
64 | */ |
||
65 | 1 | private function checkPartMatchingType($value, $type) |
|
66 | { |
||
67 | 1 | switch ($type) { |
|
68 | 1 | case "digit": |
|
69 | 1 | return ctype_digit($value); |
|
70 | break; |
||
71 | |||
72 | 1 | case "hex": |
|
73 | 1 | return ctype_xdigit($value); |
|
74 | break; |
||
75 | |||
76 | 1 | case "alpha": |
|
77 | 1 | return ctype_alpha($value); |
|
78 | break; |
||
79 | |||
80 | 1 | case "alphanum": |
|
81 | 1 | return ctype_alnum($value); |
|
82 | break; |
||
83 | |||
84 | default: |
||
85 | 1 | return false; |
|
86 | } |
||
87 | } |
||
88 | |||
89 | |||
90 | |||
91 | /** |
||
92 | * Check if value is matching a certain type and do type |
||
93 | * conversion accordingly. |
||
94 | * |
||
95 | * @param string $value the value to check. |
||
96 | * @param array $type the expected type to check against. |
||
97 | * |
||
98 | * @return boolean |
||
99 | */ |
||
100 | 4 | private function typeConvertArgument($value, $type) |
|
111 | |||
112 | |||
113 | |||
114 | /** |
||
115 | * Match part of rule and query. |
||
116 | * |
||
117 | * @param string $rulePart the rule part to check. |
||
118 | * @param string $queryPart the query part to check. |
||
119 | * @param array &$args add argument to args array if matched |
||
120 | * |
||
121 | * @return boolean |
||
122 | */ |
||
123 | 81 | private function matchPart($rulePart, $queryPart, &$args) |
|
124 | { |
||
125 | 81 | $match = false; |
|
126 | 81 | $first = isset($rulePart[0]) ? $rulePart[0] : ''; |
|
127 | 81 | switch ($first) { |
|
128 | 81 | case '*': |
|
129 | 3 | $match = true; |
|
130 | 3 | break; |
|
131 | |||
132 | 81 | case '{': |
|
133 | 4 | $match = $this->checkPartAsArgument($rulePart, $queryPart, $args); |
|
134 | 4 | break; |
|
135 | |||
136 | default: |
||
137 | 80 | $match = ($rulePart == $queryPart); |
|
138 | 80 | break; |
|
139 | } |
||
140 | 81 | return $match; |
|
141 | } |
||
142 | |||
143 | |||
144 | |||
145 | /** |
||
146 | * Check if the request method matches. |
||
147 | * |
||
148 | * @param string $method as request method. |
||
149 | * @param string $supported as request methods that are valid. |
||
150 | * |
||
151 | * @return boolean true if request method matches |
||
152 | */ |
||
153 | 152 | private function matchRequestMethod( |
|
163 | |||
164 | |||
165 | |||
166 | /** |
||
167 | * Check if the route matches a query and request method. |
||
168 | * |
||
169 | * @param string $mount of the current route being matched. |
||
170 | * @param string $relativePath of the current route being matched. |
||
171 | * @param string $absolutePath of the current route being matched. |
||
172 | * @param string $query to match against |
||
173 | * @param array $methodSupported as supported request method |
||
174 | * @param string $method as request method |
||
175 | * |
||
176 | * @return boolean true if query matches the route |
||
177 | */ |
||
178 | 152 | public function match( |
|
242 | } |
||
243 |
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: