Add test command class

This commit is contained in:
Maarten 2020-01-07 21:31:15 +01:00
parent c564e3bd52
commit 0be2f14e95

View 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;
}
}