Skip to content

Commit 181cc1f

Browse files
[12.x] Clean up redundant type hints in docblocks (#57219)
* Update ApcStore.php * Update ApcWrapper.php
1 parent 4e74830 commit 181cc1f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Illuminate/Cache/ApcStore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function __construct(ApcWrapper $apc, $prefix = '')
3636
* Retrieve an item from the cache by key.
3737
*
3838
* @param string $key
39-
* @return mixed|null
39+
* @return mixed
4040
*/
4141
public function get($key)
4242
{

src/Illuminate/Cache/ApcWrapper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class ApcWrapper
88
* Get an item from the cache.
99
*
1010
* @param string $key
11-
* @return mixed|null
11+
* @return mixed
1212
*/
1313
public function get($key)
1414
{

0 commit comments

Comments
 (0)