| 1 | <?php |
||
| 6 | class LaravelLocalizationMiddlewareBase |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * The URIs that should not be localized. |
||
| 10 | * |
||
| 11 | * @var array |
||
| 12 | */ |
||
| 13 | protected $except; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Determine if the request has a URI that should not be localized. |
||
| 17 | * |
||
| 18 | * @param \Illuminate\Http\Request $request |
||
| 19 | * @return bool |
||
| 20 | */ |
||
| 21 | protected function shouldIgnore($request) |
||
| 36 | } |
||
| 37 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..