simple-php/app/Console/Commands/TestCommand.php
2020-01-07 21:31:15 +01:00

34 lines
No EOL
408 B
PHP

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