コード例 #1
0
ファイル: recalculate.class.php プロジェクト: Tramp1357/wood
 public function process()
 {
     // Получаем  данные корзины
     $response = parent::process();
     if (!$response['success']) {
         return $response;
     }
     if (!$response['object']) {
         return $this->failure('Корзина пуста');
     }
     return $this->success('Корзина успешно пересчитана');
 }