CurrencyController.php
609 Bytes
<?php
namespace backend\controllers;
use yii\base\Controller;
use yii\filters\VerbFilter;
class CurrencyController extends Controller{
/**
* @inheritdoc
*/
public function behaviors()
{
return [
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'delete' => ['POST'],
],
],
];
}
/**
* Lists all Specialization models.
* @return mixed
*/
public function actionIndex()
{
return $this->render('index', [
]);
}
}