CartController   A
last analyzed

Complexity

Total Complexity 16

Size/Duplication

Total Lines 96
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 6

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 16
lcom 1
cbo 6
dl 0
loc 96
ccs 0
cts 60
cp 0
rs 10
c 0
b 0
f 0

7 Methods

Rating   Name   Duplication   Size   Complexity  
A getCart() 0 4 1
A actionIndex() 0 22 2
A actionTopcart() 0 4 1
A actionRemove() 0 15 3
A actionUpdateQuantity() 0 21 5
A actionClear() 0 10 2
A getViewPath() 0 8 2
1
<?php
2
3
/*
4
 * Cart module for Yii2
5
 *
6
 * @link      https://github.com/hiqdev/yii2-cart
7
 * @package   yii2-cart
8
 * @license   BSD-3-Clause
9
 * @copyright Copyright (c) 2015-2016, HiQDev (http://hiqdev.com/)
10
 */
11
12
namespace hiqdev\yii2\cart\controllers;
13
14
use hiqdev\yii2\cart\NotPurchasableException;
15
use hiqdev\yii2\cart\ShoppingCart;
16
use hiqdev\yii2\cart\widgets\CartTeaser;
17
use Yii;
18
use yii\base\ViewContextInterface;
19
use yii\data\ArrayDataProvider;
20
use yii\web\Controller;
21
use yii\web\NotFoundHttpException;
22
23
/**
24
 * Cart controller.
25
 *
26
 * @property ShoppingCart $cart The shopping cart instance
27
 */
28
class CartController extends Controller implements ViewContextInterface
29
{
30
    /**
31
     * @return ShoppingCart
32
     */
33
    public function getCart()
34
    {
35
        return $this->module->getCart();
36
    }
37
38
    public function actionIndex()
39
    {
40
        $cart = $this->getCart();
41
        $dataProvider = new ArrayDataProvider([
42
            'allModels' => $cart->getRootPositions(),
43
            'pagination' => false
44
        ]);
45
46
        if (Yii::$app->request->isAjax) {
47
            return $this->renderAjax('index', [
48
                'cart' => $cart,
49
                'module' => $this->module,
50
                'dataProvider' => $dataProvider,
51
            ]);
52
        }
53
54
        return $this->render('index', [
55
            'cart' => $cart,
56
            'module' => $this->module,
57
            'dataProvider' => $dataProvider,
58
        ]);
59
    }
60
61
    public function actionTopcart()
62
    {
63
        return $this->renderPartial('topcart', ['widgetClass' => CartTeaser::class]);
64
    }
65
66
    public function actionRemove($id)
67
    {
68
        try {
69
            $this->getCart()->removeById($id);
70
        } catch (NotPurchasableException $exception) {
71
            Yii::$app->getSession()->setFlash('error', $exception->getMessage());
0 ignored issues
show
Bug introduced by
The method getSession does only exist in yii\web\Application, but not in yii\console\Application.

It seems like the method you are trying to call exists only in some of the possible types.

Let’s take a look at an example:

class A
{
    public function foo() { }
}

class B extends A
{
    public function bar() { }
}

/**
 * @param A|B $x
 */
function someFunction($x)
{
    $x->foo(); // This call is fine as the method exists in A and B.
    $x->bar(); // This method only exists in B and might cause an error.
}

Available Fixes

  1. Add an additional type-check:

    /**
     * @param A|B $x
     */
    function someFunction($x)
    {
        $x->foo();
    
        if ($x instanceof B) {
            $x->bar();
        }
    }
    
  2. Only allow a single type to be passed if the variable comes from a parameter:

    function someFunction(B $x) { /** ... */ }
    
Loading history...
72
            $exception->resolve();
0 ignored issues
show
Unused Code introduced by
The call to the method hiqdev\yii2\cart\NotPurc...bleException::resolve() seems un-needed as the method has no side-effects.

PHP Analyzer performs a side-effects analysis of your code. A side-effect is basically anything that might be visible after the scope of the method is left.

Let’s take a look at an example:

class User
{
    private $email;

    public function getEmail()
    {
        return $this->email;
    }

    public function setEmail($email)
    {
        $this->email = $email;
    }
}

If we look at the getEmail() method, we can see that it has no side-effect. Whether you call this method or not, no future calls to other methods are affected by this. As such code as the following is useless:

$user = new User();
$user->getEmail(); // This line could safely be removed as it has no effect.

On the hand, if we look at the setEmail(), this method _has_ side-effects. In the following case, we could not remove the method call:

$user = new User();
$user->setEmail('email@domain'); // This line has a side-effect (it changes an
                                 // instance variable).
Loading history...
73
        }
74
75
        if (Yii::$app->request->isAjax) {
76
            Yii::$app->end();
77
        }
78
79
        return $this->redirect(['index']);
80
    }
81
82
    public function actionUpdateQuantity()
83
    {
84
        $request = Yii::$app->request;
85
        $id = $request->post('id');
86
        $quantity = $request->post('quantity');
87
        if ($id && $quantity) {
88
            $position = $this->getCart()->getPositionById($id);
89
            if ($position) {
90
                try {
91
                    $this->getCart()->update($position, $quantity);
92
                } catch (NotPurchasableException $exception) {
93
                    Yii::$app->getSession()->setFlash('error', $exception->getMessage());
0 ignored issues
show
Bug introduced by
The method getSession does only exist in yii\web\Application, but not in yii\console\Application.

It seems like the method you are trying to call exists only in some of the possible types.

Let’s take a look at an example:

class A
{
    public function foo() { }
}

class B extends A
{
    public function bar() { }
}

/**
 * @param A|B $x
 */
function someFunction($x)
{
    $x->foo(); // This call is fine as the method exists in A and B.
    $x->bar(); // This method only exists in B and might cause an error.
}

Available Fixes

  1. Add an additional type-check:

    /**
     * @param A|B $x
     */
    function someFunction($x)
    {
        $x->foo();
    
        if ($x instanceof B) {
            $x->bar();
        }
    }
    
  2. Only allow a single type to be passed if the variable comes from a parameter:

    function someFunction(B $x) { /** ... */ }
    
Loading history...
94
                    $exception->resolve();
0 ignored issues
show
Unused Code introduced by
The call to the method hiqdev\yii2\cart\NotPurc...bleException::resolve() seems un-needed as the method has no side-effects.

PHP Analyzer performs a side-effects analysis of your code. A side-effect is basically anything that might be visible after the scope of the method is left.

Let’s take a look at an example:

class User
{
    private $email;

    public function getEmail()
    {
        return $this->email;
    }

    public function setEmail($email)
    {
        $this->email = $email;
    }
}

If we look at the getEmail() method, we can see that it has no side-effect. Whether you call this method or not, no future calls to other methods are affected by this. As such code as the following is useless:

$user = new User();
$user->getEmail(); // This line could safely be removed as it has no effect.

On the hand, if we look at the setEmail(), this method _has_ side-effects. In the following case, we could not remove the method call:

$user = new User();
$user->setEmail('email@domain'); // This line has a side-effect (it changes an
                                 // instance variable).
Loading history...
95
                }
96
97
                return $this->redirect('index');
98
            }
99
        }
100
101
        throw new NotFoundHttpException('Either position ID or Quantity is not set');
102
    }
103
104
    public function actionClear()
105
    {
106
        $this->getCart()->removeAll();
107
108
        if (Yii::$app->request->isAjax) {
109
            Yii::$app->end();
110
        }
111
112
        return $this->redirect(['index']);
113
    }
114
115
    public function getViewPath()
116
    {
117
        if ($this->getCart()->module->viewPath) {
118
            return Yii::getAlias($this->getCart()->module->viewPath . DIRECTORY_SEPARATOR . 'cart');
0 ignored issues
show
Bug Compatibility introduced by
The expression \Yii::getAlias($this->ge...RY_SEPARATOR . 'cart'); of type string|boolean adds the type boolean to the return on line 118 which is incompatible with the return type declared by the interface yii\base\ViewContextInterface::getViewPath of type string.
Loading history...
119
        }
120
121
        return parent::getViewPath();
122
    }
123
}
124