Files
piratepoet/tests/integration/Cron/Workers/SimpleWorkerMockImplementation.php
Jan Jakeš 1b5b9d89ff Autofix namespace declaration spacing
[MAILPOET-2409]
2019-10-01 14:29:30 +01:00

13 lines
234 B
PHP

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