21 lines
337 B
PHP
Executable File
21 lines
337 B
PHP
Executable File
<?php
|
|
namespace App\Services\Github\Mod;
|
|
use App\Services\TomTool\Http;
|
|
|
|
class JichangTuijian {
|
|
|
|
public $sTitle; // 必须
|
|
public $sContent; // 必须
|
|
public $sSubTitle; // 非必须
|
|
|
|
public function A($aArticle)
|
|
{
|
|
|
|
$sContent = "test";
|
|
|
|
return $sContent;
|
|
|
|
}
|
|
|
|
}
|