Files
piratepoet/mailpoet/tests/integration/Cron/Workers/SimpleWorkerMockImplementation.php
Jan Jakes 82aeb89854 Use strict types in tests
[MAILPOET-2688]
2022-11-29 15:04:09 +01:00

13 lines
268 B
PHP

<?php declare(strict_types = 1);
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
}
}