@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | |
| 29 | 29 | return $this->getPerformancesBetween($start, $end); |
| 30 | 30 | } catch (Throwable $e) { |
| 31 | - throw new Exception("Unable to get upcoming performances: " . $e->getMessage()); |
|
| 31 | + throw new Exception("Unable to get upcoming performances: ".$e->getMessage()); |
|
| 32 | 32 | } |
| 33 | 33 | } |
| 34 | 34 | |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | public function getPerformancesForProductionSeason(int $psId): array |
| 60 | 60 | { |
| 61 | 61 | return $this->search([ |
| 62 | - 'ProductionSeasonIds' => (string)$psId, |
|
| 62 | + 'ProductionSeasonIds' => (string) $psId, |
|
| 63 | 63 | ]); |
| 64 | 64 | } |
| 65 | 65 | |