Fix registerSchedule typehint in PluginBase (#4871)

This commit is contained in:
jacobdekeizer 2020-01-10 04:55:54 +01:00 committed by Ben Thomson
parent d46accfc4f
commit 3a28771c2c
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
<?php namespace System\Classes;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Support\ServiceProvider as ServiceProviderBase;
use ReflectionClass;
use SystemException;
@ -148,7 +149,7 @@ class PluginBase extends ServiceProviderBase
/**
* Registers scheduled tasks that are executed on a regular basis.
*
* @param string $schedule
* @param Schedule $schedule
* @return void
*/
public function registerSchedule($schedule)