You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
435 B
26 lines
435 B
<?php
|
|
|
|
namespace api\controllers;
|
|
|
|
use antgoods\goods\models\ars\Goods;
|
|
use yii\rest\Controller;
|
|
/**
|
|
* @author iron
|
|
* @email weiriron@gmail.com
|
|
*/
|
|
class SiteController extends Controller
|
|
{
|
|
public function actions()
|
|
{
|
|
return [
|
|
'error' => [
|
|
'class' => 'yii\web\ErrorAction',
|
|
],
|
|
];
|
|
}
|
|
|
|
public function actionIndex()
|
|
{
|
|
return Goods::findOne(1);
|
|
}
|
|
}
|