@@ -47,6 +47,6 @@ |
||
47 | 47 | |
48 | 48 | $sent = $this->mailer->send($message); |
49 | 49 | |
50 | - print 'sent ' . $sent . ' e-mails' . PHP_EOL; |
|
50 | + print 'sent '.$sent.' e-mails'.PHP_EOL; |
|
51 | 51 | } |
52 | 52 | } |
@@ -28,7 +28,7 @@ |
||
28 | 28 | $file = fopen($filePath, 'w'); |
29 | 29 | if (false === $file) { |
30 | 30 | throw new \RuntimeException( |
31 | - 'Unable to open file for writing: ' . $filePath |
|
31 | + 'Unable to open file for writing: '.$filePath |
|
32 | 32 | ); |
33 | 33 | } |
34 | 34 |
@@ -46,7 +46,7 @@ |
||
46 | 46 | ) { |
47 | 47 | if (!$twig) { |
48 | 48 | $loader = new \Twig_Loader_Filesystem( |
49 | - __DIR__ . '/templates' |
|
49 | + __DIR__.'/templates' |
|
50 | 50 | ); |
51 | 51 | $twig = new Twig_Environment($loader); |
52 | 52 | } |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | ); |
40 | 40 | |
41 | 41 | $webArchiveFiles = $this->mountManager->listContents( |
42 | - 'tmp://' . $directory, |
|
42 | + 'tmp://'.$directory, |
|
43 | 43 | true |
44 | 44 | ); |
45 | 45 | |
@@ -48,12 +48,12 @@ discard block |
||
48 | 48 | continue; |
49 | 49 | } |
50 | 50 | |
51 | - $from = $file['filesystem'] . '://' . $file['path']; |
|
51 | + $from = $file['filesystem'].'://'.$file['path']; |
|
52 | 52 | |
53 | 53 | $pathWithoutUpperDirectory = $this->pathWithoutUpperDirectory( |
54 | 54 | $file['path'] |
55 | 55 | ); |
56 | - $to = 'zip://html/' . $pathWithoutUpperDirectory; |
|
56 | + $to = 'zip://html/'.$pathWithoutUpperDirectory; |
|
57 | 57 | |
58 | 58 | |
59 | 59 | $this->mountManager->copy($from, $to); |
@@ -40,7 +40,7 @@ |
||
40 | 40 | public function write($filePath, $events) |
41 | 41 | { |
42 | 42 | $originDirectory = $this->createWebArchiveDirectory($events); |
43 | - $originFile = $this->expandTmpPath($originDirectory) . '/index.html'; |
|
43 | + $originFile = $this->expandTmpPath($originDirectory).'/index.html'; |
|
44 | 44 | |
45 | 45 | $messages = array(); |
46 | 46 | $result = $this->prince->convert_file_to_file($originFile, $filePath, $messages); |
@@ -158,7 +158,7 @@ |
||
158 | 158 | } catch (\Exception $e) { |
159 | 159 | if ($this->logger) { |
160 | 160 | $this->logger->error( |
161 | - 'Can\'t retrieve promotions for event with id:' . $event->cdbid, |
|
161 | + 'Can\'t retrieve promotions for event with id:'.$event->cdbid, |
|
162 | 162 | ['exception' => $e] |
163 | 163 | ); |
164 | 164 | } |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | $formattedEvent = []; |
108 | 108 | |
109 | 109 | if (isset($event->image)) { |
110 | - $formattedEvent['image'] = 'http:' . $event->image; |
|
110 | + $formattedEvent['image'] = 'http:'.$event->image; |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | $type = EventType::fromJSONLDEvent($eventString); |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | { |
266 | 266 | return array_keys(array_filter( |
267 | 267 | $this->brandSpecs, |
268 | - function (EventSpecificationInterface $brandSpec) use ($event) { |
|
268 | + function(EventSpecificationInterface $brandSpec) use ($event) { |
|
269 | 269 | return $brandSpec->isSatisfiedBy($event); |
270 | 270 | } |
271 | 271 | )); |
@@ -17,7 +17,7 @@ |
||
17 | 17 | |
18 | 18 | if (!in_array($brand, $knownBrands)) { |
19 | 19 | throw new InvalidBrandException( |
20 | - "Unknown brand '{$brand}'', use one of: " . |
|
20 | + "Unknown brand '{$brand}'', use one of: ". |
|
21 | 21 | implode(', ', $knownBrands) |
22 | 22 | ); |
23 | 23 | } |
@@ -43,7 +43,7 @@ |
||
43 | 43 | $this->spreadsheet->getActiveSheet()->fromArray( |
44 | 44 | $row, |
45 | 45 | '', |
46 | - 'A' . $this->i |
|
46 | + 'A'.$this->i |
|
47 | 47 | ); |
48 | 48 | |
49 | 49 | $this->i++; |