CartController.php
407 Bytes
<?php
/**
 * Created by PhpStorm.
 * User: vitaliy
 * Date: 08.11.15
 * Time: 22:06
 */
namespace frontend\controllers;
use Yii;
use yii\web\Controller;
class CartController extends Controller {
    public $layout = '/internal';
    public function actionIndex()
    {
        return $this->render('index');
    }
    public function actionStep()
    {
        return $this->render('step');
    }
}