Passed
Push — master ( 562012...5bee03 )
by Alexey
12:08 queued 12s
created
src/Scraper/ClusterPagesFromListAppsScraper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
                     if (isset($a[0][1], $a[0][3][4][2])) {
47 47
                         $results[] = new ClusterPage(
48 48
                             trim($a[0][1]),
49
-                            GPlayApps::GOOGLE_PLAY_URL . $a[0][3][4][2]
49
+                            GPlayApps::GOOGLE_PLAY_URL.$a[0][3][4][2]
50 50
                         );
51 51
                     }
52 52
                 }
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
                     if (isset($a[20][0], $a[20][2][4][2])) {
60 60
                         $results[] = new ClusterPage(
61 61
                             trim($a[20][0]),
62
-                            GPlayApps::GOOGLE_PLAY_URL . $a[20][2][4][2]
62
+                            GPlayApps::GOOGLE_PLAY_URL.$a[20][2][4][2]
63 63
                         );
64 64
                     }
65 65
                 }
Please login to merge, or discard this patch.
src/Scraper/ClusterPagesFromClusterResponseScraper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
                 if (isset($items[0][1], $items[0][3][4][2])) {
44 44
                     $results[] = new ClusterPage(
45 45
                         $items[0][1],
46
-                        GPlayApps::GOOGLE_PLAY_URL . $items[0][3][4][2]
46
+                        GPlayApps::GOOGLE_PLAY_URL.$items[0][3][4][2]
47 47
                     );
48 48
                 }
49 49
             }
Please login to merge, or discard this patch.