Skip to content

Commit

Permalink
Add missing return docblocks (laravel#22116)
Browse files Browse the repository at this point in the history
  • Loading branch information
alepeino authored and taylorotwell committed Nov 17, 2017
1 parent d749493 commit 57d31b1
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/Illuminate/Auth/Access/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class Response
* Create a new response.
*
* @param string|null $message
* @return void
*/
public function __construct($message = null)
{
Expand Down
1 change: 1 addition & 0 deletions src/Illuminate/Auth/Events/Attempting.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class Attempting
*
* @param array $credentials
* @param bool $remember
* @return void
*/
public function __construct($credentials, $remember)
{
Expand Down
1 change: 1 addition & 0 deletions src/Illuminate/Auth/Events/Failed.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class Failed
*
* @param \Illuminate\Contracts\Auth\Authenticatable|null $user
* @param array $credentials
* @return void
*/
public function __construct($user, $credentials)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class StatusCommand extends BaseCommand
* Create a new migration rollback command instance.
*
* @param \Illuminate\Database\Migrations\Migrator $migrator
* @return \Illuminate\Database\Console\Migrations\StatusCommand
* @return void
*/
public function __construct(Migrator $migrator)
{
Expand Down
1 change: 1 addition & 0 deletions src/Illuminate/Foundation/AliasLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ class AliasLoader
* Create a new AliasLoader instance.
*
* @param array $aliases
* @return void
*/
private function __construct($aliases)
{
Expand Down
1 change: 1 addition & 0 deletions src/Illuminate/Http/JsonResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ class JsonResponse extends BaseJsonResponse
* @param int $status
* @param array $headers
* @param int $options
* @return void
*/
public function __construct($data = null, $status = 200, $headers = [], $options = 0)
{
Expand Down
1 change: 1 addition & 0 deletions src/Illuminate/Queue/ListenerOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ class ListenerOptions extends WorkerOptions
* @param int $sleep
* @param int $maxTries
* @param bool $force
* @return void
*/
public function __construct($environment = null, $delay = 0, $memory = 128, $timeout = 60, $sleep = 3, $maxTries = 0, $force = false)
{
Expand Down
1 change: 1 addition & 0 deletions src/Illuminate/Queue/WorkerOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ class WorkerOptions
* @param int $sleep
* @param int $maxTries
* @param bool $force
* @return void
*/
public function __construct($delay = 0, $memory = 128, $timeout = 60, $sleep = 3, $maxTries = 0, $force = false)
{
Expand Down
1 change: 1 addition & 0 deletions src/Illuminate/Redis/RedisManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ class RedisManager implements Factory
*
* @param string $driver
* @param array $config
* @return void
*/
public function __construct($driver, array $config)
{
Expand Down

0 comments on commit 57d31b1

Please sign in to comment.