@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | $alerts = $this->alertRepo->fireStatementAndReturn($query); |
| 74 | 74 | $count = count($alerts); |
| 75 | 75 | |
| 76 | - $output->writeln("Detected {$count} alerts to be archived"); |
|
| 76 | + $output->writeln("detected {$count} alerts to be archived"); |
|
| 77 | 77 | |
| 78 | 78 | if ($count > 0) { |
| 79 | 79 | $tables = [ |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | ['json' => $payload] |
| 116 | 116 | ); |
| 117 | 117 | |
| 118 | - $output->writeln("Archived {$records} records!"); |
|
| 118 | + $output->writeln("archived {$records} records!"); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | /** |
@@ -183,7 +183,7 @@ discard block |
||
| 183 | 183 | $this->recordsArchived += $stm->rowCount(); |
| 184 | 184 | $records += $stm->rowCount(); |
| 185 | 185 | |
| 186 | - $output->writeln("Archived {$stm->rowCount()} from Alert #{$alert['ResultID']} - Table {$table}"); |
|
| 186 | + $output->writeln("archived {$stm->rowCount()} from Alert #{$alert['ResultID']} - Table {$table}"); |
|
| 187 | 187 | } |
| 188 | 188 | |
| 189 | 189 | $this->db->commit(); |
@@ -437,7 +437,7 @@ |
||
| 437 | 437 | } |
| 438 | 438 | |
| 439 | 439 | if (!in_array($id, $filters)) { |
| 440 | - throw new InvalidArgumentException("Unrecognized {$mode}. Please check the IDs you sent."); |
|
| 440 | + throw new InvalidArgumentException("unrecognized {$mode}. Please check the IDs you sent."); |
|
| 441 | 441 | } |
| 442 | 442 | } |
| 443 | 443 | |