@@ -36,7 +36,7 @@ |
||
| 36 | 36 | * @param string $id |
| 37 | 37 | * A string uniquely identifying an event. |
| 38 | 38 | * |
| 39 | - * @return array |
|
| 39 | + * @return string |
|
| 40 | 40 | * An event array. |
| 41 | 41 | * |
| 42 | 42 | * @throws EventNotFoundException if an event can not be found for the given id |
@@ -9,7 +9,6 @@ |
||
| 9 | 9 | use CultuurNet\UDB3\Variations\Model\Properties\Url; |
| 10 | 10 | use CultuurNet\UDB3\Variations\ReadModel\Search\Criteria; |
| 11 | 11 | use CultuurNet\UDB3\Variations\ReadModel\Search\RepositoryInterface; |
| 12 | -use Doctrine\Instantiator\Exception\InvalidArgumentException; |
|
| 13 | 12 | use ValueObjects\Exception\InvalidNativeArgumentException; |
| 14 | 13 | |
| 15 | 14 | class VariationDecoratedEventService implements EventServiceInterface |
@@ -68,7 +68,7 @@ |
||
| 68 | 68 | // If the id is not a valid url we assume it points to the local installation and generate one ourselves. |
| 69 | 69 | try { |
| 70 | 70 | $validUrl = \ValueObjects\Web\Url::fromNative($id); |
| 71 | - $url = new Url((string) $validUrl); |
|
| 71 | + $url = new Url((string)$validUrl); |
|
| 72 | 72 | } catch (InvalidNativeArgumentException $e) { |
| 73 | 73 | $url = new Url( |
| 74 | 74 | $this->eventIriGenerator->iri($id) |
@@ -84,8 +84,8 @@ discard block |
||
| 84 | 84 | } |
| 85 | 85 | |
| 86 | 86 | $this->mountManager->copy( |
| 87 | - $asset['filesystem'] . '://' . $asset['path'], |
|
| 88 | - 'tmp://' . $tmpDir . '/' . $asset['path'] |
|
| 87 | + $asset['filesystem'].'://'.$asset['path'], |
|
| 88 | + 'tmp://'.$tmpDir.'/'.$asset['path'] |
|
| 89 | 89 | ); |
| 90 | 90 | }; |
| 91 | 91 | } |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | ), |
| 104 | 104 | // @todo make this configurable |
| 105 | 105 | 'assets' => new Filesystem( |
| 106 | - new Local(__DIR__ . '/assets') |
|
| 106 | + new Local(__DIR__.'/assets') |
|
| 107 | 107 | ), |
| 108 | 108 | ] |
| 109 | 109 | ); |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | |
| 112 | 112 | protected function removeTemporaryArchiveDirectory($tmpDir) |
| 113 | 113 | { |
| 114 | - $this->mountManager->deleteDir('tmp://' . $tmpDir); |
|
| 114 | + $this->mountManager->deleteDir('tmp://'.$tmpDir); |
|
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | /** |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | protected function createTemporaryArchiveDirectory() |
| 123 | 123 | { |
| 124 | 124 | $exportDir = uniqid('html-export'); |
| 125 | - $path = 'tmp://' . $exportDir; |
|
| 125 | + $path = 'tmp://'.$exportDir; |
|
| 126 | 126 | $this->mountManager->createDir($path); |
| 127 | 127 | |
| 128 | 128 | return $exportDir; |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | */ |
| 137 | 137 | protected function expandTmpPath($tmpPath) |
| 138 | 138 | { |
| 139 | - return $this->tmpDir . '/' . $tmpPath; |
|
| 139 | + return $this->tmpDir.'/'.$tmpPath; |
|
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | /** |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | */ |
| 146 | 146 | protected function writeHtml($dir, $events) |
| 147 | 147 | { |
| 148 | - $filePath = $dir . '/index.html'; |
|
| 148 | + $filePath = $dir.'/index.html'; |
|
| 149 | 149 | |
| 150 | 150 | // TransformingIteratorIterator requires a Traversable, |
| 151 | 151 | // so if $events is a regular array we need to wrap it |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | |
| 159 | 159 | $formattedEvents = new TransformingIteratorIterator( |
| 160 | 160 | $events, |
| 161 | - function ($event, $eventLocation) use ($formatter) { |
|
| 161 | + function($event, $eventLocation) use ($formatter) { |
|
| 162 | 162 | $urlParts = explode('/', $eventLocation); |
| 163 | 163 | $eventId = array_pop($urlParts); |
| 164 | 164 | return $formatter->formatEvent($eventId, $event); |
@@ -116,7 +116,7 @@ |
||
| 116 | 116 | } |
| 117 | 117 | |
| 118 | 118 | /** |
| 119 | - * @return string |
|
| 119 | + * @return UUID |
|
| 120 | 120 | */ |
| 121 | 121 | public function getFileId() |
| 122 | 122 | { |
@@ -11,7 +11,7 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | public function __construct($uuid, $unique) |
| 13 | 13 | { |
| 14 | - $message = 'Not unique: uuid = ' . $uuid . ', unique value = ' . $unique; |
|
| 14 | + $message = 'Not unique: uuid = '.$uuid.', unique value = '.$unique; |
|
| 15 | 15 | parent::__construct($message); |
| 16 | 16 | } |
| 17 | 17 | } |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | $this->logger->info( |
| 57 | 57 | 'job_info', |
| 58 | 58 | [ |
| 59 | - 'offer_variation_id' => (string) $editDescription->getId(), |
|
| 59 | + 'offer_variation_id' => (string)$editDescription->getId(), |
|
| 60 | 60 | ] |
| 61 | 61 | ); |
| 62 | 62 | } |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | $this->logger->info( |
| 71 | 71 | 'job_info', |
| 72 | 72 | [ |
| 73 | - 'offer_variation_id' => (string) $deleteEventVariation->getId() |
|
| 73 | + 'offer_variation_id' => (string)$deleteEventVariation->getId() |
|
| 74 | 74 | ] |
| 75 | 75 | ); |
| 76 | 76 | } |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function sort(array &$entities, StringLiteral $value) |
| 15 | 15 | { |
| 16 | - return usort($entities, function ($entity1, $entity2) use ($value) { |
|
| 16 | + return usort($entities, function($entity1, $entity2) use ($value) { |
|
| 17 | 17 | /** @var Entity $entity1 */ |
| 18 | 18 | $weight1 = $this->getWeight($entity1, $value); |
| 19 | 19 | |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | $queryBuilder = $this->createQueryBuilder() |
| 130 | 130 | ->update($this->getTableName()->toNative()) |
| 131 | 131 | ->set($column, '?') |
| 132 | - ->where(SchemaConfigurator::UUID_COLUMN . ' = ?') |
|
| 132 | + ->where(SchemaConfigurator::UUID_COLUMN.' = ?') |
|
| 133 | 133 | ->setParameters([ |
| 134 | 134 | $value ? 1 : 0, |
| 135 | 135 | $uuid->toNative() |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | SchemaConfigurator::COUNT_COLUMN, |
| 156 | 156 | $newCount < 0 ? 0 : $newCount |
| 157 | 157 | ) |
| 158 | - ->where(SchemaConfigurator::UUID_COLUMN . ' = ?') |
|
| 158 | + ->where(SchemaConfigurator::UUID_COLUMN.' = ?') |
|
| 159 | 159 | ->setParameters([$uuid->toNative()]); |
| 160 | 160 | |
| 161 | 161 | $queryBuilder->execute(); |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | $queryBuilder = $this->createQueryBuilder() |
| 171 | 171 | ->select([SchemaConfigurator::COUNT_COLUMN]) |
| 172 | 172 | ->from($this->getTableName()->toNative()) |
| 173 | - ->where(SchemaConfigurator::UUID_COLUMN . ' = ?') |
|
| 173 | + ->where(SchemaConfigurator::UUID_COLUMN.' = ?') |
|
| 174 | 174 | ->setParameters([$uuid->toNative()]); |
| 175 | 175 | |
| 176 | 176 | $statement = $queryBuilder->execute(); |
@@ -3,7 +3,6 @@ |
||
| 3 | 3 | namespace CultuurNet\UDB3\Role\Commands; |
| 4 | 4 | |
| 5 | 5 | use ValueObjects\Identity\UUID; |
| 6 | -use ValueObjects\String\String as stringLiteral; |
|
| 7 | 6 | |
| 8 | 7 | class RenameRole extends AbstractCommand |
| 9 | 8 | { |
@@ -22,7 +22,7 @@ |
||
| 22 | 22 | } |
| 23 | 23 | |
| 24 | 24 | /** |
| 25 | - * @return StringLiteral |
|
| 25 | + * @return stringLiteral |
|
| 26 | 26 | */ |
| 27 | 27 | public function getName() |
| 28 | 28 | { |