36 lines
665 B
PHP
36 lines
665 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: weifeng
|
|
* Date: 2020-01-06
|
|
* Time: 15:51
|
|
*
|
|
* .--, .--,
|
|
* ( ( \.---./ ) )
|
|
* '.__/o o\__.'
|
|
* {= ^ =}
|
|
* > - <
|
|
* / \
|
|
* // \\
|
|
* //| . |\\
|
|
* "'\ /'"_.-~^`'-.
|
|
* \ _ /--' `
|
|
* ___)( )(___
|
|
* (((__) (__))) 梦之所想,心之所向.
|
|
*/
|
|
|
|
namespace app\common\services;
|
|
|
|
|
|
use Ixudra\Curl\Facades\Curl;
|
|
|
|
class ShopCollectService
|
|
{
|
|
public $url;
|
|
public function __construct()
|
|
{
|
|
$this->url = '';//https://s.cloudeapi.com';
|
|
}
|
|
public function handle(){}
|
|
public function getPlugins() {}
|
|
} |