Skip to content

Commit

Permalink
Fix possible errors on DocBlocks (#15239)
Browse files Browse the repository at this point in the history
Generating documentation using Sami, it reported some errors.
I'm not sure if the tags in the comments are wrong or we should just
ignore the error output of Sami.
Anyway this is not a big issue at all, just a minor detail.
  • Loading branch information
filipeaclima authored and taylorotwell committed Sep 2, 2016
1 parent e416c40 commit 2992315
Show file tree
Hide file tree
Showing 10 changed files with 2 additions and 13 deletions.
1 change: 0 additions & 1 deletion src/Illuminate/Contracts/Cookie/QueueingFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ interface QueueingFactory extends Factory
/**
* Queue a cookie to send with the next response.
*
* @param mixed
* @return void
*/
public function queue();
Expand Down
1 change: 0 additions & 1 deletion src/Illuminate/Contracts/Foundation/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ public function basePath();
/**
* Get or check the current application environment.
*
* @param mixed
* @return string
*/
public function environment();
Expand Down
1 change: 0 additions & 1 deletion src/Illuminate/Cookie/CookieJar.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ public function queued($key, $default = null)
/**
* Queue a cookie to send with the next response.
*
* @param mixed
* @return void
*/
public function queue()
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Database/Eloquent/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ public function chunk($count, callable $callback)
*
* @param int $count
* @param callable $callback
* @param string $alias
* @param string $column
* @return bool
*/
public function chunkById($count, callable $callback, $column = 'id')
Expand Down
1 change: 0 additions & 1 deletion src/Illuminate/Foundation/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,6 @@ public function environmentFilePath()
/**
* Get or check the current application environment.
*
* @param mixed
* @return string|bool
*/
public function environment()
Expand Down
2 changes: 0 additions & 2 deletions src/Illuminate/Http/RedirectResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ protected function removeFilesFromInput(array $input)
/**
* Flash an array of input to the session.
*
* @param mixed string
* @return $this
*/
public function onlyInput()
Expand All @@ -112,7 +111,6 @@ public function onlyInput()
/**
* Flash an array of input to the session.
*
* @param mixed string
* @return \Illuminate\Http\RedirectResponse
*/
public function exceptInput()
Expand Down
2 changes: 0 additions & 2 deletions src/Illuminate/Http/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,6 @@ public function segments()
/**
* Determine if the current request URI matches a pattern.
*
* @param mixed string
* @return bool
*/
public function is()
Expand All @@ -194,7 +193,6 @@ public function is()
/**
* Determine if the current request URL and query string matches a pattern.
*
* @param mixed string
* @return bool
*/
public function fullUrlIs()
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Queue/Worker.php
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ protected function getNextJob($connection, $queue)
/**
* Process a given job from the queue.
*
* @param string $connection
* @param string $connectionName
* @param \Illuminate\Contracts\Queue\Job $job
* @param \Illuminate\Queue\WorkerOptions $options
* @return void
Expand Down
2 changes: 0 additions & 2 deletions src/Illuminate/Routing/Router.php
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,6 @@ public function currentRouteName()
/**
* Alias for the "currentRouteNamed" method.
*
* @param mixed string
* @return bool
*/
public function is()
Expand Down Expand Up @@ -1165,7 +1164,6 @@ public function currentRouteAction()
/**
* Alias for the "currentRouteUses" method.
*
* @param mixed string
* @return bool
*/
public function uses()
Expand Down
1 change: 0 additions & 1 deletion src/Illuminate/Support/Facades/Facade.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ public static function spy()
/**
* Initiate a mock expectation on the facade.
*
* @param mixed
* @return \Mockery\Expectation
*/
public static function shouldReceive()
Expand Down

0 comments on commit 2992315

Please sign in to comment.