hyperf-chat/app/Command/TestCommand.php

45 lines
850 B
PHP
Raw Normal View History

2021-05-20 16:53:34 +08:00
<?php
declare(strict_types=1);
namespace App\Command;
2021-07-12 22:00:48 +08:00
use App\Helper\Hash;
use App\Model\User;
2021-05-20 16:53:34 +08:00
use Hyperf\Command\Command as HyperfCommand;
use Hyperf\Command\Annotation\Command;
2021-07-05 21:52:44 +08:00
use Hyperf\DbConnection\Db;
2021-05-20 16:53:34 +08:00
use Psr\Container\ContainerInterface;
/**
* @Command
*/
class TestCommand extends HyperfCommand
{
/**
* @var ContainerInterface
*/
protected $container;
public function __construct(ContainerInterface $container)
{
$this->container = $container;
parent::__construct('test:command');
}
public function configure()
{
parent::configure();
$this->setDescription('Hyperf Demo Command');
}
public function handle()
{
2021-07-12 22:00:48 +08:00
User::create([
'mobile' => '18798271181',
'password' => Hash::make('asdfbasjhdfbasj'),
]);
2021-05-20 16:53:34 +08:00
}
}