Skip to content

Commit aef8958

Browse files
[10.x] Fix return types (#47561)
* Update Signals.php * Update RedisStore.php
1 parent bc1e0ca commit aef8958

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Illuminate/Cache/RedisStore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ public function flush()
253253
/**
254254
* Remove all expired tag set entries.
255255
*
256-
* @return bool
256+
* @return void
257257
*/
258258
public function flushStaleTags()
259259
{

src/Illuminate/Console/Signals.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ protected function initializeSignal($signal)
8484
/**
8585
* Unregister the current signal handlers.
8686
*
87-
* @return array<int, array<int, callable(int $signal): void>>
87+
* @return void
8888
*/
8989
public function unregister()
9090
{

0 commit comments

Comments
 (0)