Completed
Pull Request — master (#105)
by Kristof
05:46
created
src/Media/ImageUploaderService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,8 +69,8 @@
 block discarded – undo
69 69
         }
70 70
 
71 71
         $fileId = new UUID($this->uuidGenerator->generate());
72
-        $fileName = $fileId.'.'.$file->guessExtension();
73
-        $destination = $this->getUploadDirectory().'/'.$fileName;
72
+        $fileName = $fileId . '.' . $file->guessExtension();
73
+        $destination = $this->getUploadDirectory() . '/' . $fileName;
74 74
         $stream = fopen($file->getRealPath(), 'r+');
75 75
         $this->filesystem->writeStream($destination, $stream);
76 76
         fclose($stream);
Please login to merge, or discard this patch.
src/Media/MediaManager.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -77,10 +77,10 @@  discard block
 block discarded – undo
77 77
     private function generateUrl(MediaObject $mediaObject)
78 78
     {
79 79
         $extensionGuesser = ExtensionGuesser::getInstance();
80
-        $fileExtension = $extensionGuesser->guess((string) $mediaObject->getMimeType());
80
+        $fileExtension = $extensionGuesser->guess((string)$mediaObject->getMimeType());
81 81
         $fileId = $mediaObject->getFileId();
82 82
 
83
-        return Url::fromNative($this->iriGenerator->iri($fileId.'.'.$fileExtension));
83
+        return Url::fromNative($this->iriGenerator->iri($fileId . '.' . $fileExtension));
84 84
     }
85 85
 
86 86
     /**
@@ -91,12 +91,12 @@  discard block
 block discarded – undo
91 91
         $fileId = $uploadImage->getFileId();
92 92
         $mimeType = $uploadImage->getMimeType();
93 93
         $extensionGuesser = ExtensionGuesser::getInstance();
94
-        $extension = $extensionGuesser->guess((string) $mimeType);
95
-        $fileName = (string) $uploadImage->getFileId().'.'.$extension;
94
+        $extension = $extensionGuesser->guess((string)$mimeType);
95
+        $fileName = (string)$uploadImage->getFileId() . '.' . $extension;
96 96
 
97 97
         $this->filesystem->rename(
98
-            $this->uploadDirectory.'/'.$fileName,
99
-            $this->mediaDirectory.'/'.$fileName
98
+            $this->uploadDirectory . '/' . $fileName,
99
+            $this->mediaDirectory . '/' . $fileName
100 100
         );
101 101
 
102 102
         $this->create(
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
             $uploadImage->getCopyrightHolder()
107 107
         );
108 108
 
109
-        $jobInfo = ['file_id' => (string) $fileId];
109
+        $jobInfo = ['file_id' => (string)$fileId];
110 110
         $this->logger->info('job_info', $jobInfo);
111 111
     }
112 112
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
      */
116 116
     public function get(UUID $fileId)
117 117
     {
118
-        $mediaObject = $this->repository->load((string) $fileId);
118
+        $mediaObject = $this->repository->load((string)$fileId);
119 119
         $mediaObject->setUrl($this->generateUrl($mediaObject));
120 120
 
121 121
         return $mediaObject;
Please login to merge, or discard this patch.
src/Media/MediaObject.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -146,11 +146,11 @@  discard block
 block discarded – undo
146 146
     {
147 147
         return [
148 148
             'mime_type' => $this->mimeType,
149
-            'url' => (string) $this->url,
150
-            'thumbnail_url' => (string) $this->thumbnailUrl,
151
-            'description' => (string) $this->description,
152
-            'copyright_holder' => (string) $this->copyrightHolder,
153
-            'file_id' => (string) $this->fileId,
149
+            'url' => (string)$this->url,
150
+            'thumbnail_url' => (string)$this->thumbnailUrl,
151
+            'description' => (string)$this->description,
152
+            'copyright_holder' => (string)$this->copyrightHolder,
153
+            'file_id' => (string)$this->fileId,
154 154
         ];
155 155
     }
156 156
 
@@ -162,13 +162,13 @@  discard block
 block discarded – undo
162 162
     {
163 163
         $jsonLd = [
164 164
             // TODO: use an iri generator to generate a proper id
165
-            '@id' => (string) $this->getFileId(),
165
+            '@id' => (string)$this->getFileId(),
166 166
             // TODO: base type off of MIME
167 167
             '@type' => 'schema:MediaObject',
168
-            'contentUrl' => (string) $this->url,
169
-            'thumbnailUrl' => (string) $this->thumbnailUrl,
170
-            'description' => (string) $this->description,
171
-            'copyrightHolder' => (string) $this->copyrightHolder,
168
+            'contentUrl' => (string)$this->url,
169
+            'thumbnailUrl' => (string)$this->thumbnailUrl,
170
+            'description' => (string)$this->description,
171
+            'copyrightHolder' => (string)$this->copyrightHolder,
172 172
         ];
173 173
 
174 174
         return $jsonLd;
Please login to merge, or discard this patch.