34 lines
No EOL
408 B
PHP
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;
|
|
}
|
|
|
|
} |