bztang-admin/app/common/cron/CollectHost.php

21 lines
291 B
PHP

<?php
namespace app\common\cron;
use Illuminate\Foundation\Bus\DispatchesJobs;
class CollectHost
{
use DispatchesJobs;
protected $url;
public function __construct()
{
$this->url = '';//https://yun.cloudeapi.com';
}
public function handle()
{
}
}