@@ -97,7 +97,7 @@ |
||
| 97 | 97 | 'addressLocality' => $address->getCity(), |
| 98 | 98 | 'postalCode' => $address->getZip(), |
| 99 | 99 | 'streetAddress' => |
| 100 | - $address->getStreet() . ' ' . |
|
| 100 | + $address->getStreet().' '. |
|
| 101 | 101 | $address->getHouseNumber(), |
| 102 | 102 | ); |
| 103 | 103 | |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | { |
| 26 | 26 | if (!is_string($cdbXml)) { |
| 27 | 27 | throw new \InvalidArgumentException( |
| 28 | - 'Expected argument 1 to be a scalar string, received ' . gettype($cdbXml) |
|
| 28 | + 'Expected argument 1 to be a scalar string, received '.gettype($cdbXml) |
|
| 29 | 29 | ); |
| 30 | 30 | } |
| 31 | 31 | $this->cdbXml = $cdbXml; |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | { |
| 39 | 39 | if (!is_string($cdbXmlNamespaceUri)) { |
| 40 | 40 | throw new \InvalidArgumentException( |
| 41 | - 'Expected argument 1 to be a scalar string, received ' . gettype($cdbXmlNamespaceUri) |
|
| 41 | + 'Expected argument 1 to be a scalar string, received '.gettype($cdbXmlNamespaceUri) |
|
| 42 | 42 | ); |
| 43 | 43 | } |
| 44 | 44 | $this->cdbXmlNamespaceUri = $cdbXmlNamespaceUri; |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | |
| 105 | 105 | $this->filesystem->rename( |
| 106 | 106 | $uploadImage->getFilePath(), |
| 107 | - $this->mediaDirectory . '/' . $destinationPath |
|
| 107 | + $this->mediaDirectory.'/'.$destinationPath |
|
| 108 | 108 | ); |
| 109 | 109 | |
| 110 | 110 | $this->create( |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | Url::fromNative($destinationIri) |
| 116 | 116 | ); |
| 117 | 117 | |
| 118 | - $jobInfo = ['file_id' => (string) $uploadImage->getFileId()]; |
|
| 118 | + $jobInfo = ['file_id' => (string)$uploadImage->getFileId()]; |
|
| 119 | 119 | $this->logger->info('job_info', $jobInfo); |
| 120 | 120 | } |
| 121 | 121 | |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | public function get(UUID $fileId) |
| 126 | 126 | { |
| 127 | 127 | try { |
| 128 | - $mediaObject = $this->repository->load((string) $fileId); |
|
| 128 | + $mediaObject = $this->repository->load((string)$fileId); |
|
| 129 | 129 | } catch (AggregateNotFoundException $e) { |
| 130 | 130 | throw new MediaObjectNotFoundException( |
| 131 | 131 | sprintf("Media object with id '%s' not found", $fileId), |
@@ -12,6 +12,6 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function path(UUID $fileId, String $extension) |
| 14 | 14 | { |
| 15 | - return (string)$fileId . '.' . (string)$extension; |
|
| 15 | + return (string)$fileId.'.'.(string)$extension; |
|
| 16 | 16 | } |
| 17 | 17 | } |
@@ -91,8 +91,8 @@ |
||
| 91 | 91 | $mimeType = MIMEType::fromNative($mimeTypeString); |
| 92 | 92 | |
| 93 | 93 | $fileId = new UUID($this->uuidGenerator->generate()); |
| 94 | - $fileName = $fileId . '.' . $file->guessExtension(); |
|
| 95 | - $destination = $this->getUploadDirectory() . '/' . $fileName; |
|
| 94 | + $fileName = $fileId.'.'.$file->guessExtension(); |
|
| 95 | + $destination = $this->getUploadDirectory().'/'.$fileName; |
|
| 96 | 96 | $stream = fopen($file->getRealPath(), 'r+'); |
| 97 | 97 | $this->filesystem->writeStream($destination, $stream); |
| 98 | 98 | fclose($stream); |
@@ -4,7 +4,6 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Broadway\CommandHandling\CommandBusInterface; |
| 6 | 6 | use Broadway\UuidGenerator\UuidGeneratorInterface; |
| 7 | -use CultuurNet\Entry\Number; |
|
| 8 | 7 | use CultuurNet\UDB3\Media\Commands\UploadImage; |
| 9 | 8 | use CultuurNet\UDB3\Media\Properties\MIMEType; |
| 10 | 9 | use League\Flysystem\FilesystemInterface; |
@@ -147,9 +147,9 @@ discard block |
||
| 147 | 147 | { |
| 148 | 148 | $q = $this->connection->createQueryBuilder(); |
| 149 | 149 | $q->select('event') |
| 150 | - ->from($this->tableName) |
|
| 151 | - ->where('place = ?') |
|
| 152 | - ->setParameter(0, $placeId); |
|
| 150 | + ->from($this->tableName) |
|
| 151 | + ->where('place = ?') |
|
| 152 | + ->setParameter(0, $placeId); |
|
| 153 | 153 | |
| 154 | 154 | $results = $q->execute(); |
| 155 | 155 | |
@@ -184,8 +184,8 @@ discard block |
||
| 184 | 184 | { |
| 185 | 185 | $q = $this->connection->createQueryBuilder(); |
| 186 | 186 | $q->delete($this->tableName) |
| 187 | - ->where('event = ?') |
|
| 188 | - ->setParameter(0, $eventId); |
|
| 187 | + ->where('event = ?') |
|
| 188 | + ->setParameter(0, $eventId); |
|
| 189 | 189 | |
| 190 | 190 | $q->execute(); |
| 191 | 191 | } |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | |
| 42 | 42 | public function removeOrganizer($eventId) |
| 43 | 43 | { |
| 44 | - $transaction = function ($connection) use ($eventId) { |
|
| 44 | + $transaction = function($connection) use ($eventId) { |
|
| 45 | 45 | if ($this->eventHasRelations($connection, $eventId)) { |
| 46 | 46 | $this->updateEventRelation($connection, $eventId, 'organizer', null); |
| 47 | 47 | } |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | */ |
| 63 | 63 | public function storeRelation($eventId, $relationType, $itemId) |
| 64 | 64 | { |
| 65 | - $transaction = function ($connection) use ($eventId, $relationType, $itemId) { |
|
| 65 | + $transaction = function($connection) use ($eventId, $relationType, $itemId) { |
|
| 66 | 66 | if ($this->eventHasRelations($connection, $eventId)) { |
| 67 | 67 | $this->updateEventRelation($connection, $eventId, $relationType, $itemId); |
| 68 | 68 | } else { |
@@ -98,7 +98,7 @@ |
||
| 98 | 98 | ) { |
| 99 | 99 | if (!is_string($eventId)) { |
| 100 | 100 | throw new \InvalidArgumentException( |
| 101 | - 'Expected eventId to be a string, received ' . gettype($eventId) |
|
| 101 | + 'Expected eventId to be a string, received '.gettype($eventId) |
|
| 102 | 102 | ); |
| 103 | 103 | } |
| 104 | 104 | |
@@ -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 | } |
@@ -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 | } |