File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -34,42 +34,42 @@ class Str
34
34
/**
35
35
* The cache of snake-cased words.
36
36
*
37
- * @var array
37
+ * @var array<string, string>
38
38
*/
39
39
protected static $ snakeCache = [];
40
40
41
41
/**
42
42
* The cache of camel-cased words.
43
43
*
44
- * @var array
44
+ * @var array<string, string>
45
45
*/
46
46
protected static $ camelCache = [];
47
47
48
48
/**
49
49
* The cache of studly-cased words.
50
50
*
51
- * @var array
51
+ * @var array<string, string>
52
52
*/
53
53
protected static $ studlyCache = [];
54
54
55
55
/**
56
56
* The callback that should be used to generate UUIDs.
57
57
*
58
- * @var callable|null
58
+ * @var ( callable(): \Ramsey\Uuid\UuidInterface) |null
59
59
*/
60
60
protected static $ uuidFactory ;
61
61
62
62
/**
63
63
* The callback that should be used to generate ULIDs.
64
64
*
65
- * @var callable|null
65
+ * @var ( callable(): \Symfony\Component\Uid\Ulid) |null
66
66
*/
67
67
protected static $ ulidFactory ;
68
68
69
69
/**
70
70
* The callback that should be used to generate random strings.
71
71
*
72
- * @var callable|null
72
+ * @var ( callable(int): string) |null
73
73
*/
74
74
protected static $ randomStringFactory ;
75
75
You can’t perform that action at this time.
0 commit comments