Add test command class
This commit is contained in:
parent
c564e3bd52
commit
0be2f14e95
1 changed files with 34 additions and 0 deletions
34
app/Console/Commands/TestCommand.php
Normal file
34
app/Console/Commands/TestCommand.php
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
|
||||
namespace App\Console\Commands;
|
||||
|
||||
class TestCommand {
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $signature = 'test';
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public $description = 'A test command';
|
||||
|
||||
/**
|
||||
* TestCommand constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed;
|
||||
*/
|
||||
public function handle()
|
||||
{
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue