We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32e65c0 commit 9ec94d3Copy full SHA for 9ec94d3
composer.json
@@ -31,7 +31,7 @@
31
"beste/clock": "^3.0",
32
"beste/in-memory-cache": "^1.3.1",
33
"beste/json": "^1.5.1",
34
- "cuyz/valinor": "^2.0",
+ "cuyz/valinor": "^2.2.1",
35
"fig/http-message-util": "^1.1.5",
36
"firebase/php-jwt": "^6.10.2",
37
"google/auth": "^v1.45",
src/Firebase/Valinor/Converter/SnakeCaseToCamelCaseConverter.php
@@ -13,6 +13,12 @@
13
*/
14
final class SnakeCaseToCamelCaseConverter
15
{
16
+ /**
17
+ * @template T of object
18
+ * @param array<mixed> $value
19
+ * @param callable(array<mixed>): T $next
20
+ * @return T
21
+ */
22
public function __invoke(mixed $values, callable $next): object
23
24
if ($values instanceof Traversable) {
0 commit comments