Completed
Push — develop ( c61561...247dd8 )
by
unknown
17:35 queued 09:17
created
module/Cv/src/Cv/Entity/Cv.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
      * @var array
72 72
      * @ODM\Collection
73 73
      */
74
-    protected $nativeLanguages=[];
74
+    protected $nativeLanguages = [];
75 75
 
76 76
 
77 77
     /**
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
 
217 217
     public function setIsDraft($isDraft)
218 218
     {
219
-        $this->isDraft=$isDraft;
219
+        $this->isDraft = $isDraft;
220 220
         return $this;
221 221
     }
222 222
 
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
      */
285 285
     public function setNativeLanguages($nativeLanguages)
286 286
     {
287
-        $this->nativeLanguages=$nativeLanguages;
287
+        $this->nativeLanguages = $nativeLanguages;
288 288
         return $this;
289 289
     }
290 290
 
Please login to merge, or discard this patch.
module/Cv/src/Cv/Entity/PreferredJob.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      */
65 65
     public function setTypeOfApplication($typeOfApplication)
66 66
     {
67
-        $this->typeOfApplication=$typeOfApplication;
67
+        $this->typeOfApplication = $typeOfApplication;
68 68
         return $this;
69 69
     }
70 70
 
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     
81 81
     public function setDesiredJob($desiredJob)
82 82
     {
83
-        $this->desiredJob=$desiredJob;
83
+        $this->desiredJob = $desiredJob;
84 84
         return $this;
85 85
     }
86 86
     
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 
92 92
     public function setDesiredLocation($desiredLocation)
93 93
     {
94
-        $this->desiredLocation=$desiredLocation;
94
+        $this->desiredLocation = $desiredLocation;
95 95
         return $this;
96 96
     }
97 97
 
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 
103 103
     public function setDesiredLocations($desiredLocations)
104 104
     {
105
-        $this->desiredLocation=$desiredLocations;
105
+        $this->desiredLocation = $desiredLocations;
106 106
         return $this;
107 107
     }
108 108
 
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     
114 114
     public function setWillingnessToTravel($willingnessToTravel)
115 115
     {
116
-        $this->willingnessToTravel=$willingnessToTravel;
116
+        $this->willingnessToTravel = $willingnessToTravel;
117 117
         return $this;
118 118
     }
119 119
     
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 
125 125
     public function setExpectedSalary($expectedSalary)
126 126
     {
127
-        $this->expectedSalary=$expectedSalary;
127
+        $this->expectedSalary = $expectedSalary;
128 128
         return $this;
129 129
     }
130 130
 
Please login to merge, or discard this patch.