@@ -38,7 +38,7 @@ discard block |
||
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 |
||
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 |
||
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 | } |