Passed
Push — master ( dcb8bd...c5b979 )
by Jeroen
03:44
created
src/Backend/Modules/MediaLibraryImporter/Component/ImportResults.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -45,17 +45,17 @@
 block discarded – undo
45 45
 
46 46
     public function bumpNumberOfErrorImports(): void
47 47
     {
48
-        $this->numberOfErrorImports ++;
48
+        $this->numberOfErrorImports++;
49 49
     }
50 50
 
51 51
     public function bumpNumberOfImportedItems(): void
52 52
     {
53
-        $this->numberOfImportedItems ++;
53
+        $this->numberOfImportedItems++;
54 54
     }
55 55
 
56 56
     public function bumpNumberOfSuccessfulImports(): void
57 57
     {
58
-        $this->numberOfSuccessfulImports ++;
58
+        $this->numberOfSuccessfulImports++;
59 59
     }
60 60
 
61 61
     public function getNumberOfErrorImports(): int
Please login to merge, or discard this patch.
Domain/MediaItemImport/Command/ExecuteMediaItemImportHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
         }
81 81
     }
82 82
 
83
-    private function findExistingMediaItem(MediaItemImport $mediaItemImport): ?MediaItem
83
+    private function findExistingMediaItem(MediaItemImport $mediaItemImport): ? MediaItem
84 84
     {
85 85
         /** @var MediaItemImport|null $existingMediaItemImport */
86 86
         $existingMediaItemImport = $this->mediaItemImportRepository->findExistingImported(
Please login to merge, or discard this patch.
MediaLibraryImporter/Domain/MediaItemImport/MediaItemImportRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
         );
22 22
     }
23 23
 
24
-    public function findExistingImported(MediaGroup $mediaGroup, string $path): ?MediaItemImport
24
+    public function findExistingImported(MediaGroup $mediaGroup, string $path): ? MediaItemImport
25 25
     {
26 26
         return $this->findOneBy(
27 27
             [
Please login to merge, or discard this patch.
Modules/MediaLibraryImporter/Domain/MediaItemImport/MediaItemImport.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -223,12 +223,12 @@
 block discarded – undo
223 223
         return $this->mediaGroup;
224 224
     }
225 225
 
226
-    public function getMediaItem(): ?MediaItem
226
+    public function getMediaItem(): ? MediaItem
227 227
     {
228 228
         return $this->mediaItem;
229 229
     }
230 230
 
231
-    public function getTitle(): ?string
231
+    public function getTitle(): ? string
232 232
     {
233 233
         return $this->title;
234 234
     }
Please login to merge, or discard this patch.