Files
piratepoet/mailpoet/tests/integration/Cron/Workers/SimpleWorkerMockImplementation.php
Jan Jakes 9f790efbf0 Move plugin files to a subfolder
[MAILPOET-3988]
2022-01-18 15:30:22 +01:00

13 lines
241 B
PHP

<?php
namespace MailPoet\Cron\Workers;
class SimpleWorkerMockImplementation extends SimpleWorker {
const TASK_TYPE = 'mock_simple_worker';
const SUPPORT_MULTIPLE_INSTANCES = false;
public function init() {
// to be mocked
}
}