Files
piratepoet/tests/integration/Cron/Workers/SimpleWorkerMockImplementation.php
Amine Ben hammou 43df66d162 Add public keyword to methods
[MAILPOET-2413]
2019-12-26 18:09:45 +03: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
}
}