Skip to content

Commit b359be7

Browse files
authored
Remove a few useless return void statements. (#53225)
1 parent ca9266e commit b359be7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Hub.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function __construct(?Container $container = null)
4141
*/
4242
public function defaults(Closure $callback)
4343
{
44-
return $this->pipeline('default', $callback);
44+
$this->pipeline('default', $callback);
4545
}
4646

4747
/**

0 commit comments

Comments
 (0)