Passed
Push — master ( 1538fa...697687 )
by ReliQ
14:22
created
src/Service/Scrapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
     public function convertScraps(bool $convertDuplicates = false, bool $storeRelatedReferences = false): void
98 98
     {
99 99
         $this->scraps->map(
100
-            function (Scrap $scrap) use ($convertDuplicates, $storeRelatedReferences) {
100
+            function(Scrap $scrap) use ($convertDuplicates, $storeRelatedReferences) {
101 101
                 try {
102 102
                     $relatedObject = $scrap->convert($convertDuplicates, $storeRelatedReferences);
103 103
                     if ($relatedObject !== null) {
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
     public function saveScraps(): void
124 124
     {
125 125
         $this->scraps->map(
126
-            function (Scrap $scrap): void {
126
+            function(Scrap $scrap): void {
127 127
                 try {
128 128
                     $scrap->save();
129 129
                 } catch (QueryException $e) {
Please login to merge, or discard this patch.