@@ -42,7 +42,7 @@ |
||
42 | 42 | throw new UnknownWriterException('The requested writer could not be created'); |
43 | 43 | } |
44 | 44 | |
45 | - if (! $writer instanceof WriterInterface) { |
|
45 | + if (!$writer instanceof WriterInterface) { |
|
46 | 46 | throw new InvalidWriterException('The requested writer is not of the expected type'); |
47 | 47 | } |
48 | 48 |
@@ -118,7 +118,7 @@ |
||
118 | 118 | $this->output->writeln(sprintf( |
119 | 119 | 'Conference "%1$s" succcessfully %2$s.', |
120 | 120 | $cfp->conferenceName, |
121 | - ($exists)?'updated':'created' |
|
121 | + ($exists) ? 'updated' : 'created' |
|
122 | 122 | )); |
123 | 123 | |
124 | 124 | return isset($response) && ($response->getStatusCode() === 200 || $response->getStatusCode() === 201); |