Passed
Push — master ( 97bca0...c3d0da )
by Carsten
19:24 queued 12:32
created
module/Jobs/src/Filter/ViewModelTemplateFilterJob.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
             'lang/jobs/view',
49 49
             [],
50 50
             [
51
-                'query' => [ 'id' => $job->getId() ],
51
+                'query' => ['id' => $job->getId()],
52 52
                 'force_canonical' => true
53 53
             ]
54 54
         );
Please login to merge, or discard this patch.
module/Jobs/src/Filter/ViewModelTemplateFilterForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
             'lang/jobs/view',
49 49
             [],
50 50
             [
51
-                'query' => [ 'id' => $job->getId() ],
51
+                'query' => ['id' => $job->getId()],
52 52
                 'force_canonical' => true
53 53
             ]
54 54
         );
Please login to merge, or discard this patch.
module/Jobs/src/Entity/Decorator/JsonLdProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
             $dateEnd->add(new \DateInterval("P180D"));
59 59
             $dateEnd = $dateEnd->format('Y-m-d H:i:s');
60 60
         }
61
-        $array=[
61
+        $array = [
62 62
             '@context'=>'http://schema.org/',
63 63
             '@type' => 'JobPosting',
64 64
             'title' => $this->job->getTitle(),
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      */
94 94
     private function getLocations($locations)
95 95
     {
96
-        $array=[];
96
+        $array = [];
97 97
         foreach ($locations as $location) { /* @var \Core\Entity\LocationInterface $location */
98 98
             array_push(
99 99
                 $array,
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
                     '@type' => 'Place',
102 102
                     'address' => [
103 103
                         '@type' => 'PostalAddress',
104
-                        'streetAddress' => $location->getStreetname() .' '.$location->getStreetnumber(),
104
+                        'streetAddress' => $location->getStreetname().' '.$location->getStreetnumber(),
105 105
                         'postalCode' => $location->getPostalCode(),
106 106
                         'addressLocality' => $location->getCity(),
107 107
                         'addressCountry' => $location->getCountry(),
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
      */
123 123
     private function getDescription(TemplateValuesInterface $values)
124 124
     {
125
-        $description=sprintf(
125
+        $description = sprintf(
126 126
             "<p>%s</p>".
127 127
             "<h1>%s</h1>".
128 128
             "<h3>Requirements</h3><p>%s</p>".
Please login to merge, or discard this patch.
module/Jobs/src/Entity/AtsMode.php 2 patches
Indentation   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -208,13 +208,13 @@  discard block
 block discarded – undo
208 208
         return $this->email;
209 209
     }
210 210
 
211
-	/**
212
-	 * @return bool
213
-	 */
214
-	public function getOneClickApply()
215
-	{
216
-		return $this->oneClickApply;
217
-	}
211
+    /**
212
+     * @return bool
213
+     */
214
+    public function getOneClickApply()
215
+    {
216
+        return $this->oneClickApply;
217
+    }
218 218
 
219 219
 
220 220
     /**
@@ -222,29 +222,29 @@  discard block
 block discarded – undo
222 222
      *
223 223
      * @return $this
224 224
      */
225
-	public function setOneClickApply($oneClickApply)
226
-	{
227
-		$this->oneClickApply = (bool)$oneClickApply;
225
+    public function setOneClickApply($oneClickApply)
226
+    {
227
+        $this->oneClickApply = (bool)$oneClickApply;
228 228
 		
229
-		return $this;
230
-	}
231
-
232
-	/**
233
-	 * @return array
234
-	 */
235
-	public function getOneClickApplyProfiles()
236
-	{
237
-		return $this->oneClickApplyProfiles;
238
-	}
239
-
240
-	/**
241
-	 * @param array $oneClickApplyProfiles
242
-	 * @return AtsMode
243
-	 */
244
-	public function setOneClickApplyProfiles(array $oneClickApplyProfiles)
245
-	{
246
-		$this->oneClickApplyProfiles = $oneClickApplyProfiles;
229
+        return $this;
230
+    }
231
+
232
+    /**
233
+     * @return array
234
+     */
235
+    public function getOneClickApplyProfiles()
236
+    {
237
+        return $this->oneClickApplyProfiles;
238
+    }
239
+
240
+    /**
241
+     * @param array $oneClickApplyProfiles
242
+     * @return AtsMode
243
+     */
244
+    public function setOneClickApplyProfiles(array $oneClickApplyProfiles)
245
+    {
246
+        $this->oneClickApplyProfiles = $oneClickApplyProfiles;
247 247
 		
248
-		return $this;
249
-	}
248
+        return $this;
249
+    }
250 250
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -224,7 +224,7 @@
 block discarded – undo
224 224
      */
225 225
 	public function setOneClickApply($oneClickApply)
226 226
 	{
227
-		$this->oneClickApply = (bool)$oneClickApply;
227
+		$this->oneClickApply = (bool) $oneClickApply;
228 228
 		
229 229
 		return $this;
230 230
 	}
Please login to merge, or discard this patch.
module/Jobs/src/Entity/StatusInterface.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     /**
22 22
      * A new job was created.
23 23
      */
24
-    const CREATED =  /*@translate*/ 'created';
24
+    const CREATED = /*@translate*/ 'created';
25 25
 
26 26
     /**
27 27
      * A new job is waiting for approval
@@ -36,12 +36,12 @@  discard block
 block discarded – undo
36 36
     /**
37 37
      * A Job is accepted an is going to be published
38 38
      */
39
-    const PUBLISH  = /*@translate*/ 'publish';
39
+    const PUBLISH = /*@translate*/ 'publish';
40 40
 
41 41
     /**
42 42
      * A Job is online
43 43
      */
44
-    const ACTIVE  = /*@translate*/ 'active';
44
+    const ACTIVE = /*@translate*/ 'active';
45 45
 
46 46
     /**
47 47
      * A job was is set inactive
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     /**
52 52
      * A job was expired
53 53
      */
54
-    const EXPIRED  = /*@translate*/ 'expired';
54
+    const EXPIRED = /*@translate*/ 'expired';
55 55
     
56 56
     public function __construct($status = self::CREATED);
57 57
 
Please login to merge, or discard this patch.
module/Jobs/src/Entity/Job.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -428,9 +428,9 @@
 block discarded – undo
428 428
     }
429 429
     
430 430
     /**
431
-    * (non-PHPdoc)
432
-    * @see \Jobs\Entity\JobInterface::getOrganization()
433
-    */
431
+     * (non-PHPdoc)
432
+     * @see \Jobs\Entity\JobInterface::getOrganization()
433
+     */
434 434
     public function getOrganization()
435 435
     {
436 436
         return $this->organization;
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -514,10 +514,10 @@  discard block
 block discarded – undo
514 514
     public function getLocation()
515 515
     {
516 516
         if (null === $this->location) {
517
-            $array=[];
517
+            $array = [];
518 518
             if (null != $this->locations) {
519 519
                 foreach ($this->locations as $location) { /* @var \Core\Entity\LocationInterface $location */
520
-                    $array[]=(string) $location;
520
+                    $array[] = (string) $location;
521 521
                 }
522 522
                 return implode(', ', $array);
523 523
             }
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
             if ($removePermissions) {
573 573
                 $this->getPermissions()->revoke($this->user, Permissions::PERMISSION_ALL);
574 574
             }
575
-            $this->user=null;
575
+            $this->user = null;
576 576
         }
577 577
 
578 578
         return $this;
@@ -833,7 +833,7 @@  discard block
 block discarded – undo
833 833
         $organization = $this->organization;
834 834
         if (is_object($organization) && $organization->getImage()) {
835 835
             $organizationImage = $organization->getImage();
836
-            return "/file/Organizations.OrganizationImage/" . $organizationImage->getId();
836
+            return "/file/Organizations.OrganizationImage/".$organizationImage->getId();
837 837
         }
838 838
         return $this->logoRef;
839 839
     }
Please login to merge, or discard this patch.
module/Jobs/src/Entity/Status.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -59,12 +59,12 @@  discard block
 block discarded – undo
59 59
     {
60 60
         parent::__construct($status);
61 61
 
62
-        $constant = 'self::' . strtoupper(str_replace(' ', '_', $status));
62
+        $constant = 'self::'.strtoupper(str_replace(' ', '_', $status));
63 63
         if (!defined($constant)) {
64
-            throw new \DomainException('Unknown status: ' . $status);
64
+            throw new \DomainException('Unknown status: '.$status);
65 65
         }
66
-        $this->name=constant($constant);
67
-        $this->order=$this->getOrder();
66
+        $this->name = constant($constant);
67
+        $this->order = $this->getOrder();
68 68
     }
69 69
 
70 70
     /**
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      */
75 75
     public function getName()
76 76
     {
77
-        return isset($this->name)?$this->name:'';
77
+        return isset($this->name) ? $this->name : '';
78 78
     }
79 79
 
80 80
     /**
Please login to merge, or discard this patch.
module/Jobs/src/Entity/JobInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -198,7 +198,7 @@
 block discarded – undo
198 198
      *
199 199
      * @return UserInterface $user
200 200
      */
201
-    public function getUser() ;
201
+    public function getUser();
202 202
 
203 203
     /**
204 204
      * Gets the link to the application form
Please login to merge, or discard this patch.
module/Jobs/src/Entity/JobSnapshot.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -245,6 +245,6 @@
 block discarded – undo
245 245
 
246 246
     public function __toString()
247 247
     {
248
-        return self::class . '( ' . $this->getSnapshotId() . ' )';
248
+        return self::class.'( '.$this->getSnapshotId().' )';
249 249
     }
250 250
 }
Please login to merge, or discard this patch.