Passed
Push — master ( 641929...562012 )
by Alexey
06:04 queued 12s
created
src/Scraper/ClusterPagesFromClusterResponseScraper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
         foreach ($json[0][1] as $items) {
42 42
             $results[] = new ClusterPage(
43 43
                 $items[0][1],
44
-                GPlayApps::GOOGLE_PLAY_URL . $items[0][3][4][2]
44
+                GPlayApps::GOOGLE_PLAY_URL.$items[0][3][4][2]
45 45
             );
46 46
         }
47 47
         $token = $json[0][3][1] ?? null;
Please login to merge, or discard this patch.
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.