Completed
Pull Request — master (#1217)
by
unknown
01:31
created
Binary/Loader/FileSystemLoader.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -70,6 +70,9 @@
 block discarded – undo
70 70
         return new FileBinary($path, $mimeType, $extension);
71 71
     }
72 72
 
73
+    /**
74
+     * @param string|null $mimeType
75
+     */
73 76
     private function getExtension(?string $mimeType): ?string
74 77
     {
75 78
         if ($this->extensionGuesser instanceof DeprecatedExtensionGuesserInterface) {
Please login to merge, or discard this patch.
Binary/Loader/FlysystemLoader.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -61,6 +61,9 @@
 block discarded – undo
61 61
         );
62 62
     }
63 63
 
64
+    /**
65
+     * @param string|false $mimeType
66
+     */
64 67
     private function getExtension(?string $mimeType): ?string
65 68
     {
66 69
         if ($this->extensionGuesser instanceof DeprecatedExtensionGuesserInterface) {
Please login to merge, or discard this patch.
Imagine/Data/DataManager.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -171,6 +171,9 @@
 block discarded – undo
171 171
         return $defaultImage;
172 172
     }
173 173
 
174
+    /**
175
+     * @param string|null $mimeType
176
+     */
174 177
     private function getExtension(?string $mimeType): ?string
175 178
     {
176 179
         if ($this->extensionGuesser instanceof DeprecatedExtensionGuesserInterface) {
Please login to merge, or discard this patch.