Passed
Push — main ( fddb08...b8e98f )
by Daryl
02:59
created
src/Resources/Performances.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
             return $this->getPerformancesBetween($start, $end);
40 40
         } catch (Throwable $e) {
41
-            throw new Exception("Unable to get upcoming performances: " . $e->getMessage());
41
+            throw new Exception("Unable to get upcoming performances: ".$e->getMessage());
42 42
         }
43 43
     }
44 44
 
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
     public function getPerformancesForProductionSeason(int $psId): array
82 82
     {
83 83
         return $this->search([
84
-            'ProductionSeasonIds' => (string)$psId,
84
+            'ProductionSeasonIds' => (string) $psId,
85 85
         ]);
86 86
     }
87 87
 
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 
122 122
             return array_map([$this, 'makeNewZoneAvailability'], $data);
123 123
         } catch (Exception $e) {
124
-            error_log("Exception in getPerformanceZoneAvailabilities: " . $e->getMessage());
124
+            error_log("Exception in getPerformanceZoneAvailabilities: ".$e->getMessage());
125 125
 
126 126
             return [];
127 127
         }
Please login to merge, or discard this patch.