Skip to content

Commit

Permalink
Fix docblock on argument type (laravel#20779)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnabialek authored and taylorotwell committed Aug 26, 2017
1 parent 87e71db commit 603ed4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Illuminate/Contracts/Foundation/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function register($provider, $options = [], $force = false);
* Register a deferred provider and service.
*
* @param string $provider
* @param string $service
* @param string|null $service
* @return void
*/
public function registerDeferredProvider($provider, $service = null);
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Foundation/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ public function loadDeferredProvider($service)
* Register a deferred provider and service.
*
* @param string $provider
* @param string $service
* @param string|null $service
* @return void
*/
public function registerDeferredProvider($provider, $service = null)
Expand Down

0 comments on commit 603ed4a

Please sign in to comment.