Completed
Pull Request — master (#30)
by
unknown
05:03
created

Survey::getAnswers()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
ccs 0
cts 2
cp 0
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 2
1
<?php
2
3
namespace AppBundle\Entity\Survey;
4
5
use AppBundle\Entity\User;
6
use Doctrine\ORM\Mapping as ORM;
7
use Knp\DoctrineBehaviors\Model as ORMBehaviors;
8
use Doctrine\Common\Collections\ArrayCollection;
9
use Symfony\Component\Validator\Constraints as Assert;
10
11
/**
12
 * Survey.
13
 *
14
 * @ORM\Entity(repositoryClass="AppBundle\Repository\SurveyRepository")
15
 */
16
class Survey
17
{
18
    use ORMBehaviors\Timestampable\Timestampable;
19
20
    /**
21
     * @var int
22
     *
23
     * @ORM\Column(type="integer")
24
     * @ORM\Id
25
     * @ORM\GeneratedValue(strategy="AUTO")
26
     */
27
    private $id;
28
29
    /**
30
     * @var SurveyType
31
     * @Assert\Type("object")
32
     * @Assert\Valid
33
     * @ORM\ManyToOne(targetEntity="AppBundle\Entity\Survey\SurveyType", inversedBy="surveys")
34
     * @ORM\JoinColumn(onDelete="SET NULL")
35
     */
36
    private $type;
37
38
    /**
39
     * @var string
40
     * @Assert\NotBlank()
41
     * @Assert\Type("string")
42
     * @ORM\Column(type="string")
43
     */
44
    private $status;
45
46
    /**
47
     * @var User
48
     * @Assert\Type("object")
49
     * @Assert\Valid
50
     * @ORM\ManyToOne(targetEntity="AppBundle\Entity\User", inversedBy="surveys")
51
     * @ORM\JoinColumn(onDelete="CASCADE")
52
     */
53
    private $user;
54
55
    /**
56
     * @var ArrayCollection[SurveyAnswer]
57
     * @ORM\OneToMany(targetEntity="SurveyAnswer", mappedBy="survey", cascade={"persist", "remove"})
58
     */
59
    private $answers;
60
61 1
    public function __construct()
62
    {
63 1
        $this->answers = new ArrayCollection();
64 1
        $this->status = 'current';
65 1
    }
66
67
    /**
68
     * Get id.
69
     *
70
     * @return int
71
     */
72 3
    public function getId()
73
    {
74 3
        return $this->id;
75
    }
76
77
    /**
78
     * Set type.
79
     *
80
     * @param SurveyType $type
81
     *
82
     * @return Survey
83
     */
84 1
    public function setType(SurveyType $type)
85
    {
86 1
        $this->type = $type;
87
88 1
        return $this;
89
    }
90
91
    /**
92
     * Get type.
93
     *
94
     * @return SurveyType
95
     */
96 7
    public function getType()
97
    {
98 7
        return $this->type;
99
    }
100
101
    /**
102
     * Set status.
103
     *
104
     * @param string $status
105
     *
106
     * @return Survey
107
     */
108 1
    public function setStatus($status)
109
    {
110 1
        $this->status = $status;
111
112 1
        return $this;
113
    }
114
115
    /**
116
     * Get status.
117
     *
118
     * @return string
119
     */
120 3
    public function getStatus()
121
    {
122 3
        return $this->status;
123
    }
124
125
    /**
126
     * Set user.
127
     *
128
     * @param User $user
129
     *
130
     * @return Survey
131
     */
132 1
    public function setUser(User $user)
133
    {
134 1
        $this->user = $user;
135
136 1
        return $this;
137
    }
138
139
    /**
140
     * Get user.
141
     *
142
     * @return User
143
     */
144 5
    public function getUser()
145
    {
146 5
        return $this->user;
147
    }
148
149
    /**
150
     * @param SurveyAnswer $answer
151
     *
152
     * @return Survey
153
     */
154
    public function addSurveyAnswer(SurveyAnswer $answer)
155
    {
156
        if (!$this->answers->contains($answer)) {
157
            $this->answers->add($answer);
158
            $answer->setSurvey($this);
159
        }
160
161
        return $this;
162
    }
163
164
    /**
165
     * Get answers.
166
     *
167
     * @return ArrayCollection
168
     */
169
    public function getAnswers()
170
    {
171
        return $this->answers;
172
    }
173
174
    /**
175
     * Get questions.
176
     *
177
     * @return array
178
     */
179 1
    public function getQuestions()
180
    {
181 1
        $sections = $this->getType()->getSections();
182 1
        foreach ($sections as $section) {
183 1
            foreach ($section->getQuestions() as $quest) {
184 1
                $questions[] = $quest;
0 ignored issues
show
Coding Style Comprehensibility introduced by
$questions was never initialized. Although not strictly required by PHP, it is generally a good practice to add $questions = array(); before regardless.

Adding an explicit array definition is generally preferable to implicit array definition as it guarantees a stable state of the code.

Let’s take a look at an example:

foreach ($collection as $item) {
    $myArray['foo'] = $item->getFoo();

    if ($item->hasBar()) {
        $myArray['bar'] = $item->getBar();
    }

    // do something with $myArray
}

As you can see in this example, the array $myArray is initialized the first time when the foreach loop is entered. You can also see that the value of the bar key is only written conditionally; thus, its value might result from a previous iteration.

This might or might not be intended. To make your intention clear, your code more readible and to avoid accidental bugs, we recommend to add an explicit initialization $myArray = array() either outside or inside the foreach loop.

Loading history...
185
            }
186
        }
187
188 1
        return $questions;
0 ignored issues
show
Bug introduced by
The variable $questions does not seem to be defined for all execution paths leading up to this point.

If you define a variable conditionally, it can happen that it is not defined for all execution paths.

Let’s take a look at an example:

function myFunction($a) {
    switch ($a) {
        case 'foo':
            $x = 1;
            break;

        case 'bar':
            $x = 2;
            break;
    }

    // $x is potentially undefined here.
    echo $x;
}

In the above example, the variable $x is defined if you pass “foo” or “bar” as argument for $a. However, since the switch statement has no default case statement, if you pass any other value, the variable $x would be undefined.

Available Fixes

  1. Check for existence of the variable explicitly:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        if (isset($x)) { // Make sure it's always set.
            echo $x;
        }
    }
    
  2. Define a default value for the variable:

    function myFunction($a) {
        $x = ''; // Set a default which gets overridden for certain paths.
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        echo $x;
    }
    
  3. Add a value for the missing path:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
    
            // We add support for the missing case.
            default:
                $x = '';
                break;
        }
    
        echo $x;
    }
    
Loading history...
189
    }
190
}
191