update v1.0.3.3
This commit is contained in:
52
app/Providers/AppServiceProvider.php
Normal file
52
app/Providers/AppServiceProvider.php
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php namespace App\Providers;
|
||||
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
|
||||
use App\Http\Controllers\WelcomeController;
|
||||
|
||||
class AppServiceProvider extends ServiceProvider {
|
||||
|
||||
|
||||
/**
|
||||
* Register any application services.
|
||||
*
|
||||
* This service provider is a great spot to register your various container
|
||||
* bindings with the application. As you can see, we are registering our
|
||||
* "Registrar" implementation here. You can add your own bindings too!
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function register()
|
||||
{
|
||||
$this->app->bind(
|
||||
'Illuminate\Contracts\Auth\Registrar',
|
||||
'App\Services\Registrar'
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
|
||||
public function boot() {
|
||||
// Please note the different namespace
|
||||
// and please add a \ in front of your classes in the global namespace
|
||||
\Event::listen('cron.collectJobs', function() {
|
||||
|
||||
\Cron::add('example1', '* * * * *', function() {
|
||||
$this->index();
|
||||
return 'No';
|
||||
});
|
||||
|
||||
\Cron::add('example2', '*/2 * * * *', function() {
|
||||
// Do some crazy things successfully every two minute
|
||||
return null;
|
||||
});
|
||||
|
||||
\Cron::add('disabled job', '0 * * * *', function() {
|
||||
// Do some crazy things successfully every hour
|
||||
}, false);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
Reference in New Issue
Block a user