Blame view

frontend/controllers/CartController.php 407 Bytes
a0c30ef8   Administrator   upload project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  <?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');
      }
  
  
  }