<code>\OC</code>
</UndefinedClass>
</file>
- <file src="lib/public/BackgroundJob/TimedJob.php">
- <MoreSpecificImplementedParamType>
- <code>$jobList</code>
- <code>$jobList</code>
- </MoreSpecificImplementedParamType>
- </file>
<file src="lib/public/Cache/CappedMemoryCache.php">
<MissingTemplateParam>
<code>\ArrayAccess</code>
*/
namespace OCP\BackgroundJob;
-use OC\BackgroundJob\JobList;
use OCP\ILogger;
/**
}
/**
- * run the job if the last run is is more than the interval ago
+ * Run the job if the last run is more than the interval ago
*
- * @param JobList $jobList
+ * @param IJobList $jobList
* @param ILogger|null $logger
*
* @since 15.0.0
* @deprecated since 25.0.0 Use start() instead
*/
- final public function execute($jobList, ILogger $logger = null) {
+ final public function execute(IJobList $jobList, ILogger $logger = null) {
$this->start($jobList);
}
/**
- * Run the job if the last run is is more than the interval ago
+ * Run the job if the last run is more than the interval ago
*
* @since 25.0.0
*/