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 cd3458a commit 14170afCopy full SHA for 14170af
app/Console/Commands/InspectorTest.php
@@ -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