Passed
Push — master ( 05e846...9de07a )
by Jason
02:44
created
src/Model/JobSubmission.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
     public function getName()
96 96
     {
97 97
         if ($this->FirstName) {
98
-            return $this->FirstName . ' ' . $this->LastName;
98
+            return $this->FirstName.' '.$this->LastName;
99 99
         } else {
100 100
             return 'No Name';
101 101
         }
Please login to merge, or discard this patch.
src/Extensions/JobCollectionExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     public function updateCollectionItems(&$collection)
35 35
     {
36
-        $collection = $collection->filterByCallback(function ($item) {
36
+        $collection = $collection->filterByCallback(function($item) {
37 37
             return (
38 38
                 $item->PostDate <= DBDatetime::now() &&
39 39
                 $item->EndPostDate >= DBDatetime::now()
Please login to merge, or discard this patch.