Skip to content

Commit

Permalink
Fix phpdocs
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsimard committed Jun 8, 2016
1 parent 3cc7023 commit 5757f48
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Illuminate/Queue/Failed/DatabaseFailedJobProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function __construct(ConnectionResolverInterface $resolver, $database, $t
* @param string $connection
* @param string $queue
* @param string $payload
* @return int
* @return int|null
*/
public function log($connection, $queue, $payload)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Queue/Failed/FailedJobProviderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ interface FailedJobProviderInterface
* @param string $connection
* @param string $queue
* @param string $payload
* @return int
* @return int|null
*/
public function log($connection, $queue, $payload);

Expand Down
4 changes: 2 additions & 2 deletions src/Illuminate/Queue/Failed/NullFailedJobProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ class NullFailedJobProvider implements FailedJobProviderInterface
* @param string $connection
* @param string $queue
* @param string $payload
* @return int
* @return int|null
*/
public function log($connection, $queue, $payload)
{
return -1;
//
}

/**
Expand Down

0 comments on commit 5757f48

Please sign in to comment.