| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class ArrayTarget extends Target |
||
| 11 | { |
||
| 12 | public function __construct() |
||
| 13 | { |
||
| 14 | $this->setExportInterval(1000000); |
||
| 15 | } |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Exports log [[messages]] to a specific destination. |
||
| 19 | */ |
||
| 20 | public function export(): void |
||
| 21 | { |
||
| 22 | // throw exception if message limit is reached |
||
| 23 | throw new \Exception('More than 1000000 messages logged.'); |
||
| 24 | } |
||
| 26 |