From 77cd341d1cd3cce1579110e4bd4fcc6eb0b40fba Mon Sep 17 00:00:00 2001 From: Pantelis Peslis Date: Mon, 26 Jan 2015 19:17:29 +0200 Subject: [PATCH] [PHPDocs] Some fixes. --- src/Illuminate/Auth/Passwords/PasswordBroker.php | 2 +- src/Illuminate/Foundation/Bus/DispatchesCommands.php | 3 ++- src/Illuminate/Http/RedirectResponse.php | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Illuminate/Auth/Passwords/PasswordBroker.php b/src/Illuminate/Auth/Passwords/PasswordBroker.php index 51468ca35f93..37beb000d0e6 100755 --- a/src/Illuminate/Auth/Passwords/PasswordBroker.php +++ b/src/Illuminate/Auth/Passwords/PasswordBroker.php @@ -19,7 +19,7 @@ class PasswordBroker implements PasswordBrokerContract { /** * The user provider implementation. * - * @var \Illuminate\Auth\UserProviderInterface + * @var \Illuminate\Contracts\Auth\UserProvider */ protected $users; diff --git a/src/Illuminate/Foundation/Bus/DispatchesCommands.php b/src/Illuminate/Foundation/Bus/DispatchesCommands.php index d7620f037cca..c0129005920d 100644 --- a/src/Illuminate/Foundation/Bus/DispatchesCommands.php +++ b/src/Illuminate/Foundation/Bus/DispatchesCommands.php @@ -34,7 +34,8 @@ protected function dispatchFromArray($command, array $array) * Marshal a command and dispatch it to its appropriate handler. * * @param mixed $command - * @param \ArrayAccess $array + * @param \ArrayAccess $source + * @param array $extras * @return mixed */ protected function dispatchFrom($command, ArrayAccess $source, $extras = []) diff --git a/src/Illuminate/Http/RedirectResponse.php b/src/Illuminate/Http/RedirectResponse.php index 62306467f2c6..2f5ff021f682 100755 --- a/src/Illuminate/Http/RedirectResponse.php +++ b/src/Illuminate/Http/RedirectResponse.php @@ -75,7 +75,7 @@ public function withCookie(Cookie $cookie) /** * Add multiple cookies to the response. * - * @param array $cookie + * @param array $cookies * @return $this */ public function withCookies(array $cookies)