Commit 08d249f
Fixed getIdentifier() must be of the type string (#7)
When `$configuration->getName()` is `null`, which is possible with the default `@ParamConverter` from `FrameworkExtraBundle` an exception will be thrown because `getIdentifier` requires a string as third param.
Using `?string $name` is not allowed since the bundle should be compatible with php >= 7.1
`private function getIdentifier(Request $request, $options, string $name): string`1 parent 5cbc952 commit 08d249f
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
48 | | - | |
| 48 | + | |
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
| |||
0 commit comments