no message
This commit is contained in:
parent
5f29714127
commit
edcd533f2c
@ -5,6 +5,20 @@ use App\Models\Article as ModelArticle;
|
||||
|
||||
class Git extends Base {
|
||||
|
||||
public function UrlList()
|
||||
{
|
||||
$aArticleList = ModelArticle::orderBy('user_name')->get()->toArray();
|
||||
|
||||
$sMsg = '';
|
||||
foreach ($aArticleList as $v) {
|
||||
$sMsg = '\n\n';
|
||||
$sMsg = "https://github.com/".$v['user_name']."/".$v['project_name'];
|
||||
}
|
||||
|
||||
return $sMsg;
|
||||
|
||||
}
|
||||
|
||||
public function LastTime($aParam)
|
||||
{
|
||||
$iId = $aParam['aArg'][1];
|
||||
|
||||
Loading…
Reference in New Issue
Block a user