We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d42820 commit beadbd7Copy full SHA for beadbd7
src/Commands/SearchLog.php
@@ -3,6 +3,7 @@
3
namespace Devdot\LogArtisan\Commands;
4
5
use Devdot\LogArtisan\Models\LogRecord;
6
+use Symfony\Component\Console\Command\Command;
7
use Symfony\Component\Console\Input\InputArgument;
8
9
class SearchLog extends ShowLog {
@@ -20,6 +21,8 @@ public function handle() {
20
21
$this->filter['search'] = $this->argument('search');
22
$this->line('Running search via log:show for <bg=yellow>'.$this->filter['search'].'</>');
23
parent::handle();
24
+
25
+ return Command::SUCCESS;
26
}
27
28
protected function addHighlightingToRecord(LogRecord $record): LogRecord {
0 commit comments