Files
oai-symfony/typo3conf/ext/news/Classes/Jobs/ImportJobInterface.php
2026-07-03 17:53:31 +02:00

25 lines
458 B
PHP

<?php
namespace GeorgRinger\News\Jobs;
/**
* This file is part of the "news" Extension for TYPO3 CMS.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*/
/**
* Import job interface
*/
interface ImportJobInterface
{
public function getNumberOfRecordsPerRun();
public function getInfo();
public function isEnabled();
public function run($offset);
}