This commit is contained in:
2025-11-14 16:39:00 +08:00
parent 695b046c8a
commit 46073d666c
3 changed files with 36 additions and 1 deletions
+34
View File
@@ -0,0 +1,34 @@
<?php
declare(strict_types=1);
namespace App\Command;
use Hyperf\Command\Command as HyperfCommand;
use Hyperf\Command\Annotation\Command;
use Psr\Container\ContainerInterface;
use App\Platform\Tools\Request\CompanyRequest;
use App\Model\Company;
use Hyperf\DbConnection\Db;
use App\Utils\Log;
use Exception;
#[Command]
class AppQueuePushKm extends HyperfCommand
{
public function __construct(protected ContainerInterface $container)
{
parent::__construct('app:queue-push:km');
}
public function configure()
{
parent::configure();
$this->setDescription('Test push message with KM data');
}
public function handle()
{
}
}