Issues (19)

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/Wind.php (2 issues)

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
 *
4
 * PHP version 5.5
5
 *
6
 * @package Forecast
7
 * @author  Sergey V.Kuzin <[email protected]>
8
 * @license MIT
9
 */
10
declare(strict_types=1);
11
namespace Forecast\Model;
12
13
14
use Forecast\ForecastItemInterface;
15
16
class Wind implements ModelInterface
17
{
18
    /** @var float */
19
    protected $speed = null;
20
21
    /** @var float */
22
    protected $degree = null;
23
24
    /**
25
     * @api
26
     * @return float
27
     */
28
    public function getSpeed()
29
    {
30
        return $this->speed;
31
    }
32
33
    /**
34
     * @api
35
     * @return float
36
     */
37
    public function getDegree()
38
    {
39
        return $this->degree;
40
    }
41
42
    /**
43
     * @api
44
     * @retern string
45
     */
46
    public function getDirection()
47
    {
48
        $result = '';
0 ignored issues
show
$result is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
49
        if ($this->degree >= 0 && $this->degree < 22.5) {
50
            $result = 'Север';
51
        } elseif ($this->degree >= 22.5 && $this->degree < 45) {
52
            $result = 'Север Северо-Восток';
53
        } elseif ($this->degree >= 45 && $this->degree < 67.5) {
54
            $result = 'Северо-Восток';
55
        } elseif ($this->degree >= 67.5 && $this->degree < 90) {
56
            $result = 'Восток Северо-восток';
57
        } elseif ($this->degree >= 90 && $this->degree < 112.5) {
58
            $result = 'Восток';
59
        } elseif ($this->degree >= 112.5 && $this->degree < 135) {
60
            $result = 'Восток Юго-Восток';
61
        } elseif ($this->degree >= 135 && $this->degree < 157.5) {
62
            $result = 'Юго-Восток';
63
        } elseif ($this->degree >= 157.5 && $this->degree < 180) {
64
            $result = 'Юг Юго-Восток';
65
        } elseif ($this->degree >= 180 && $this->degree < 202.5) {
66
            $result = 'Юг';
67
        } elseif ($this->degree >= 202.5 && $this->degree < 225) {
68
            $result = 'Юг Юго-Запад';
69
        } elseif ($this->degree >= 225 && $this->degree < 247.5) {
70
            $result = 'Юго-Запад';
71
        } elseif ($this->degree >= 247.5 && $this->degree < 270) {
72
            $result = 'Запал Юго-Запад';
73
        } elseif ($this->degree >= 270 && $this->degree < 292.5) {
74
            $result = 'Запад';
75
        } elseif ($this->degree >= 292.5 && $this->degree < 315) {
76
            $result = 'Запад Северо-Запад';
77
        } elseif ($this->degree >= 315 && $this->degree < 337.5) {
78
            $result = 'Северо-Запад';
79
        } else {
80
            $result = 'Север Северо-Запад';
81
        }
82
        return $result;
83
    }
84
85
    /**
86
     * @param array $data
87
     * @return $this
88
     */
89 View Code Duplication
    public function setData(array $data)
0 ignored issues
show
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
90
    {
91
        if (
92
            !($trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS)) ||
93
            !(isset($trace[1]['class']) && in_array(ForecastItemInterface::class, class_implements($trace[1]['class'])))
94
        ) {
95
            trigger_error('Member not available: setData', E_USER_ERROR);
96
        }
97
98
        $this->speed = $data['speed'];
99
        $this->degree = $data['degree'];
100
101
        return $this;
102
    }
103
104
    public function __toString()
105
    {
106
        return (string)$this->speed;
107
    }
108
}
109