Files
admin-php-module/commands/HelloWorld.php
miroman-afk 87cf29a443 v.1.7 update
2021-11-01 14:35:53 +03:00

20 lines
397 B
PHP

<?php
namespace App\Commands;
use App\Component\Models\User;
use App\Console\Commands\HRCCommand;
use App\Console\Commands\HRCCommandInterface;
class HelloWorld extends HRCCommand implements HRCCommandInterface {
protected $signature = 'gethello';
public function command($input, $output = null) {
$users = User::all();
return [
'status' => 'success',
'users' => $users,
];
}
}