Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3.0] Fix docblocks #739

Merged
merged 1 commit into from
Jan 3, 2020
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
1 change: 1 addition & 0 deletions src/Contracts/HorizonCommandQueue.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ interface HorizonCommandQueue
* @param string $name
* @param string $command
* @param array $options
* @return void
*/
public function push($name, $command, array $options = []);

Expand Down
2 changes: 1 addition & 1 deletion src/Jobs/RetryFailedJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class RetryFailedJob
/**
* Create a new job instance.
*
* @param string $id;
* @param string $id
* @return void
*/
public function __construct($id)
Expand Down
1 change: 1 addition & 0 deletions src/RedisHorizonCommandQueue.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public function __construct(RedisFactory $redis)
* @param string $name
* @param string $command
* @param array $options
* @return void
*/
public function push($name, $command, array $options = [])
{
Expand Down
4 changes: 2 additions & 2 deletions stubs/HorizonServiceProvider.stub
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace App\Providers;

use Laravel\Horizon\Horizon;
use Illuminate\Support\Facades\Gate;
use Laravel\Horizon\Horizon;
use Laravel\Horizon\HorizonApplicationServiceProvider;

class HorizonServiceProvider extends HorizonApplicationServiceProvider
Expand All @@ -20,7 +20,7 @@ class HorizonServiceProvider extends HorizonApplicationServiceProvider
// Horizon::routeSmsNotificationsTo('15556667777');
// Horizon::routeMailNotificationsTo('example@example.com');
// Horizon::routeSlackNotificationsTo('slack-webhook-url', '#channel');

// Horizon::night();
}

Expand Down