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

12 lines
234 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
}
}