Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[11.x] Fix: update @return in some doc blocks #50826

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Illuminate/Filesystem/LockableFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public function getSharedLock($block = false)
* Get an exclusive lock on the file.
*
* @param bool $block
* @return bool
* @return $this
*
* @throws \Illuminate\Contracts\Filesystem\LockTimeoutException
*/
Expand Down
4 changes: 2 additions & 2 deletions tests/Redis/RedisManagerExtensionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class FakeRedisConnector implements Connector
*
* @param array $config
* @param array $options
* @return \Illuminate\Contracts\Redis\Connection
* @return string
*/
public function connect(array $config, array $options)
{
Expand All @@ -111,7 +111,7 @@ public function connect(array $config, array $options)
* @param array $config
* @param array $clusterOptions
* @param array $options
* @return \Illuminate\Contracts\Redis\Connection
* @return string
*/
public function connectToCluster(array $config, array $clusterOptions, array $options)
{
Expand Down