Skip to content
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/Auth/Passwords/PasswordBroker.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class PasswordBroker implements PasswordBrokerContract {
/**
* The user provider implementation.
*
* @var \Illuminate\Auth\UserProviderInterface
* @var \Illuminate\Contracts\Auth\UserProvider
*/
protected $users;

Expand Down
3 changes: 2 additions & 1 deletion src/Illuminate/Foundation/Bus/DispatchesCommands.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We're missing the extras parameter from this docblock too.

*/
protected function dispatchFrom($command, ArrayAccess $source, $extras = [])
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder if we should add a typehint to that third param @taylorotwell.

Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Http/RedirectResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down