Files
piratepoet/tests/integration/Cron/Workers/KeyCheck/KeyCheckWorkerMockImplementation.php
Jan Jakeš 01a0fe96c4 Remove no longer necessary checks
[MAILPOET-1948]
2019-09-12 13:59:32 +02:00

11 lines
233 B
PHP

<?php
namespace MailPoet\Cron\Workers\KeyCheck;
class KeyCheckWorkerMockImplementation extends KeyCheckWorker {
const TASK_TYPE = 'mock_key_check_worker';
function checkKey() {
return ['code' => 12345]; // bogus code
}
}