1
0
Fork 0
mirror of https://github.com/janickiy/yii2-nomer synced 2025-02-12 18:11:52 +00:00
yii2-nomer/controllers/PackagesController.php

15 lines
230 B
PHP
Raw Normal View History

2020-02-05 03:34:26 +00:00
<?php
namespace app\controllers;
use yii\web\Controller;
class PackagesController extends Controller {
public function actionIndex() {
return $this->render("index");
}
public function actionBuy() {
}
}