class CartController extends PublicController {
public static function getRules($type = false)
{
return [
'/cart' => 'cart/index',
];
}
public static $uniqId = 'cart';
public static $controllerTitle = 'Корзина';
public static $all = false;
public function actionIndex()
{
return $this->render('index');
}
}