@@ -95,7 +95,7 @@ |
||
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 | } |
@@ -33,7 +33,7 @@ |
||
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() |