@@ -39,7 +39,7 @@ |
||
39 | 39 | ->setDefinition([ |
40 | 40 | new InputArgument('report', InputArgument::REQUIRED, 'Report to run'), |
41 | 41 | new InputArgument('outputFile', InputArgument::OPTIONAL, 'File to output report to', '/tmp/report.csv') |
42 | - ]); |
|
42 | + ]); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | protected function execute(InputInterface $input, OutputInterface $output) |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace ConferenceTools\Tickets\Form; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace ConferenceTools\Tickets\Form; |
6 | 6 |
@@ -111,7 +111,7 @@ |
||
111 | 111 | public function containingOnly(TicketType ...$ticketTypes) |
112 | 112 | { |
113 | 113 | $filteredReservations = []; |
114 | - foreach($this->tickets as $ticketReservation) { |
|
114 | + foreach ($this->tickets as $ticketReservation) { |
|
115 | 115 | if (in_array($ticketReservation->getTicketType(), $ticketTypes, false)) { |
116 | 116 | $filteredReservations[] = $ticketReservation; |
117 | 117 | } |