Completed
Pull Request — master (#257)
by Kristof
04:27
created
src/Offer/Offer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
     {
270 270
         $equalImages = array_filter(
271 271
             $this->mediaObjects,
272
-            function ($existingMediaObjectId) use ($image) {
272
+            function($existingMediaObjectId) use ($image) {
273 273
                 return $image
274 274
                     ->getMediaObjectId()
275 275
                     ->sameValueAs($existingMediaObjectId);
@@ -444,7 +444,7 @@  discard block
 block discarded – undo
444 444
             if ($this->rejectedReason && $reason->sameValueAs($this->rejectedReason)) {
445 445
                 return true; // nothing left to do if the offer has already been rejected for the same reason
446 446
             } else {
447
-                throw new Exception('The offer has already been rejected for another reason: ' . $this->rejectedReason);
447
+                throw new Exception('The offer has already been rejected for another reason: '.$this->rejectedReason);
448 448
             }
449 449
         }
450 450
 
@@ -586,7 +586,7 @@  discard block
 block discarded – undo
586 586
         $this->mainImageId = $mainImage ? $mainImage->getMediaObjectId() : null;
587 587
 
588 588
         $this->mediaObjects = array_map(
589
-            function (Image $image) {
589
+            function(Image $image) {
590 590
                 return $image->getMediaObjectId();
591 591
             },
592 592
             $imagesEvent->getImages()->toArray()
Please login to merge, or discard this patch.
src/Media/MediaManager.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -76,11 +76,11 @@  discard block
 block discarded – undo
76 76
     ) {
77 77
         try {
78 78
             $existingMediaObject = $this->repository->load($id);
79
-            $this->logger->info('Trying to create media with id: ' .$id . ' but it already exists. Using existing Media Object!');
79
+            $this->logger->info('Trying to create media with id: '.$id.' but it already exists. Using existing Media Object!');
80 80
 
81 81
             return $existingMediaObject;
82 82
         } catch (AggregateNotFoundException $exception) {
83
-            $this->logger->info('No existing media with id: ' .$id . ' found. Creating a new Media Object!');
83
+            $this->logger->info('No existing media with id: '.$id.' found. Creating a new Media Object!');
84 84
         }
85 85
 
86 86
         $mediaObject = MediaObject::create(
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 
115 115
         $this->filesystem->rename(
116 116
             $uploadImage->getFilePath(),
117
-            $this->mediaDirectory . '/' . $destinationPath
117
+            $this->mediaDirectory.'/'.$destinationPath
118 118
         );
119 119
 
120 120
         $this->create(
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
             Url::fromNative($destinationIri)
126 126
         );
127 127
 
128
-        $jobInfo = ['file_id' => (string) $uploadImage->getFileId()];
128
+        $jobInfo = ['file_id' => (string)$uploadImage->getFileId()];
129 129
         $this->logger->info('job_info', $jobInfo);
130 130
     }
131 131
 
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
     public function get(UUID $fileId)
136 136
     {
137 137
         try {
138
-            $mediaObject = $this->repository->load((string) $fileId);
138
+            $mediaObject = $this->repository->load((string)$fileId);
139 139
         } catch (AggregateNotFoundException $e) {
140 140
             throw new MediaObjectNotFoundException(
141 141
                 sprintf("Media object with id '%s' not found", $fileId),
@@ -159,8 +159,8 @@  discard block
 block discarded – undo
159 159
         $image = new Image(
160 160
             $mediaObject->getMediaObjectId(),
161 161
             $mediaObject->getMimeType(),
162
-            new Description((string) $mediaObject->getDescription()),
163
-            new CopyrightHolder((string) $mediaObject->getCopyrightHolder()),
162
+            new Description((string)$mediaObject->getDescription()),
163
+            new CopyrightHolder((string)$mediaObject->getCopyrightHolder()),
164 164
             $mediaObject->getSourceLocation()
165 165
         );
166 166
 
Please login to merge, or discard this patch.
src/Offer/Events/Image/AbstractImagesEvent.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,9 +36,9 @@  discard block
 block discarded – undo
36 36
      */
37 37
     public function serialize()
38 38
     {
39
-        $serializedData =  parent::serialize() + array(
39
+        $serializedData = parent::serialize() + array(
40 40
             'images' => array_map(
41
-                function (Image $image) {
41
+                function(Image $image) {
42 42
                     return $image->serialize();
43 43
                 },
44 44
                 $this->images->toArray()
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     {
62 62
         $images = ImageCollection::fromArray(
63 63
             array_map(
64
-                function ($imageData) {
64
+                function($imageData) {
65 65
                     return Image::deserialize($imageData);
66 66
                 },
67 67
                 $data['images']
Please login to merge, or discard this patch.
src/Media/Properties/MIMEType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,11 +30,11 @@
 block discarded – undo
30 30
         $typeSupported = array_key_exists($subtypeString, self::$supportedSubtypes);
31 31
 
32 32
         if (!$typeSupported) {
33
-            throw new UnsupportedMIMETypeException('MIME type "' . $subtypeString . '" is not supported!');
33
+            throw new UnsupportedMIMETypeException('MIME type "'.$subtypeString.'" is not supported!');
34 34
         }
35 35
 
36 36
         $type = self::$supportedSubtypes[$subtypeString];
37 37
 
38
-        return new static($type . '/' . $subtypeString);
38
+        return new static($type.'/'.$subtypeString);
39 39
     }
40 40
 }
Please login to merge, or discard this patch.
src/Media/Serialization/MediaObjectSerializer.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -41,10 +41,10 @@  discard block
 block discarded – undo
41 41
         $normalizedData = [
42 42
             '@id' => $this->iriGenerator->iri($mediaObject->getMediaObjectId()),
43 43
             '@type' => $this->serializeMimeType($mediaObject->getMimeType()),
44
-            'contentUrl' => (string) $mediaObject->getSourceLocation(),
45
-            'thumbnailUrl' => (string) $mediaObject->getSourceLocation(),
46
-            'description' => (string) $mediaObject->getDescription(),
47
-            'copyrightHolder' => (string) $mediaObject->getCopyrightHolder(),
44
+            'contentUrl' => (string)$mediaObject->getSourceLocation(),
45
+            'thumbnailUrl' => (string)$mediaObject->getSourceLocation(),
46
+            'description' => (string)$mediaObject->getDescription(),
47
+            'copyrightHolder' => (string)$mediaObject->getCopyrightHolder(),
48 48
         ];
49 49
 
50 50
         return $normalizedData;
@@ -52,18 +52,18 @@  discard block
 block discarded – undo
52 52
 
53 53
     public function serializeMimeType(MIMEType $mimeType)
54 54
     {
55
-        $typeParts = explode('/', (string) $mimeType);
55
+        $typeParts = explode('/', (string)$mimeType);
56 56
         $type = array_shift($typeParts);
57 57
 
58 58
         if ($type === 'image') {
59 59
             return 'schema:ImageObject';
60 60
         }
61 61
 
62
-        if ((string) $mimeType === 'application/octet-stream') {
62
+        if ((string)$mimeType === 'application/octet-stream') {
63 63
             return 'schema:mediaObject';
64 64
         }
65 65
 
66
-        throw new UnsupportedException('Unsupported MIME-type "'. $mimeType .'"');
66
+        throw new UnsupportedException('Unsupported MIME-type "'.$mimeType.'"');
67 67
     }
68 68
 
69 69
     public function deserialize($data, $type, $format, array $context = array())
Please login to merge, or discard this patch.