Issues (37)

Security Analysis    no request data  

This project does not seem to handle request data directly as such no vulnerable execution paths were found.

  Cross-Site Scripting
Cross-Site Scripting enables an attacker to inject code into the response of a web-request that is viewed by other users. It can for example be used to bypass access controls, or even to take over other users' accounts.
  File Exposure
File Exposure allows an attacker to gain access to local files that he should not be able to access. These files can for example include database credentials, or other configuration files.
  File Manipulation
File Manipulation enables an attacker to write custom data to files. This potentially leads to injection of arbitrary code on the server.
  Object Injection
Object Injection enables an attacker to inject an object into PHP code, and can lead to arbitrary code execution, file exposure, or file manipulation attacks.
  Code Injection
Code Injection enables an attacker to execute arbitrary code on the server.
  Response Splitting
Response Splitting can be used to send arbitrary responses.
  File Inclusion
File Inclusion enables an attacker to inject custom files into PHP's file loading mechanism, either explicitly passed to include, or for example via PHP's auto-loading mechanism.
  Command Injection
Command Injection enables an attacker to inject a shell command that is execute with the privileges of the web-server. This can be used to expose sensitive data, or gain access of your server.
  SQL Injection
SQL Injection enables an attacker to execute arbitrary SQL code on your database server gaining access to user data, or manipulating user data.
  XPath Injection
XPath Injection enables an attacker to modify the parts of XML document that are read. If that XML document is for example used for authentication, this can lead to further vulnerabilities similar to SQL Injection.
  LDAP Injection
LDAP Injection enables an attacker to inject LDAP statements potentially granting permission to run unauthorized queries, or modify content inside the LDAP tree.
  Header Injection
  Other Vulnerability
This category comprises other attack vectors such as manipulating the PHP runtime, loading custom extensions, freezing the runtime, or similar.
  Regex Injection
Regex Injection enables an attacker to execute arbitrary code in your PHP process.
  XML Injection
XML Injection enables an attacker to read files on your local filesystem including configuration files, or can be abused to freeze your web-server process.
  Variable Injection
Variable Injection enables an attacker to overwrite program variables with custom data, and can lead to further vulnerabilities.
Unfortunately, the security analysis is currently not available for your project. If you are a non-commercial open-source project, please contact support to gain access.

src/Model/Cart/CartItem.php (1 issue)

Labels
Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This software may be modified and distributed under the terms
7
 * of the MIT license. See the LICENSE file for details.
8
 */
9
10
namespace FAPI\Sylius\Model\Cart;
11
12
use FAPI\Sylius\Model\CreatableFromArray;
13
use FAPI\Sylius\Model\Product\Variant;
14
15
/**
16
 * @author Kasim Taskin <[email protected]>
17
 */
18
final class CartItem implements CreatableFromArray
19
{
20
    /**
21
     * @var int
22
     */
23
    private $id;
24
25
    /**
26
     * @var int
27
     */
28
    private $quantity;
29
30
    /**
31
     * @var int
32
     */
33
    private $unitPrice;
34
35
    /**
36
     * @var int
37
     */
38
    private $total;
39
40
    /**
41
     * @var Variant
42
     */
43
    private $variant;
44
45
    /**
46
     * CartItem constructor.
47
     *
48
     * @param Variant|null $variant
49
     */
50
    private function __construct(
51
        int $id,
52
        int $quantity,
53
        int $unitPrice,
54
        int $total,
55
        Variant $variant
56
    ) {
57
        $this->id = $id;
58
        $this->quantity = $quantity;
59
        $this->unitPrice = $unitPrice;
60
        $this->total = $total;
61
        if (null !== $variant) {
62
            $this->variant = $variant;
63
        }
64
    }
65
66
    /**
67
     * @return CartItem
68
     */
69
    public static function createFromArray(array $data): self
70
    {
71
        $id = -1;
72
        if (isset($data['id'])) {
73
            $id = $data['id'];
74
        }
75
76
        $quantity = -1;
77
        if (isset($data['quantity'])) {
78
            $quantity = $data['quantity'];
79
        }
80
81
        $unitPrice = -1;
82
        if (isset($data['unitPrice'])) {
83
            $unitPrice = $data['unitPrice'];
84
        }
85
86
        $total = '';
87
        if (isset($data['total'])) {
88
            $total = $data['total'];
89
        }
90
91
        $variant = null;
92
        if (isset($data['variant'])) {
93
            $variant = Variant::createFromArray($data['variant']);
94
        }
95
96
        return new self($id, $quantity, $unitPrice, $total, $variant);
0 ignored issues
show
It seems like $variant defined by null on line 91 can also be of type null; however, FAPI\Sylius\Model\Cart\CartItem::__construct() does only seem to accept object<FAPI\Sylius\Model\Product\Variant>, maybe add an additional type check?

If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:

/**
 * @return array|string
 */
function returnsDifferentValues($x) {
    if ($x) {
        return 'foo';
    }

    return array();
}

$x = returnsDifferentValues($y);
if (is_array($x)) {
    // $x is an array.
}

If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.

Loading history...
97
    }
98
99
    public function getId(): int
100
    {
101
        return $this->id;
102
    }
103
104
    public function getQuantity(): int
105
    {
106
        return $this->quantity;
107
    }
108
109
    public function getUnitPrice(): int
110
    {
111
        return $this->unitPrice;
112
    }
113
114
    public function getTotal(): int
115
    {
116
        return $this->total;
117
    }
118
119
    public function getVariant(): ?Variant
120
    {
121
        return $this->variant;
122
    }
123
}
124