Files
piratepoet/tests/integration/Cron/CronTriggerMockMethodWithException.php

9 lines
162 B
PHP

<?php
namespace MailPoet\Cron\Triggers;
class CronTriggerMockMethodWithException {
static function run() {
throw new \Exception('Exception thrown');
}
}