Skip to content

Commit 14170af

Browse files
committed
Adds test console command
1 parent cd3458a commit 14170af

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
3+
namespace App\Console\Commands;
4+
5+
use Illuminate\Console\Command;
6+
7+
class InspectorTest extends Command
8+
{
9+
protected $signature = 'inspector:test';
10+
protected $description = 'Command description';
11+
12+
public function handle()
13+
{
14+
$this->output->writeln('Hello World');
15+
16+
return Command::SUCCESS;
17+
}
18+
}

0 commit comments

Comments
 (0)