Completed
Push — master ( 504eca...138499 )
by Dev
01:50
created
src/TestProxy.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     public function isProxyValid(?string $proxy = null)
23 23
     {
24 24
         $keywords = ['bateau', 'avion', 'navire', 'seconde', 'bac', 'piscine', 'fuser', 'place', 'homme', 'femme',  'quad', 'moto', 'velo',
25
-                           'enfant', 'poilu', 'voiture', 'oiseau', 'singe', 'animaux', 'nature', 'paysage', 'jeux', 'maison', 'paysage', 'jardin', ];
25
+                            'enfant', 'poilu', 'voiture', 'oiseau', 'singe', 'animaux', 'nature', 'paysage', 'jeux', 'maison', 'paysage', 'jardin', ];
26 26
 
27 27
         $GoogleSerp = new Search($keywords[array_rand($keywords)]);
28 28
         $GoogleSerp->setTld('fr')->setLanguage('fr')->setSleep(0)->setNbrPage(1)->setCache(false);
Please login to merge, or discard this patch.
Tests/SearchTest.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -10,11 +10,11 @@
 block discarded – undo
10 10
     {
11 11
         $Google = new Search('piedweb.com');
12 12
         $Google
13
-                 ->setNbrPage(1) // Get Only first Page
14
-                 ->setTld('fr')
15
-                 ->setLanguage('fr')
16
-                 ->setSleep(1)
17
-                 ->setCache(null)
13
+                    ->setNbrPage(1) // Get Only first Page
14
+                    ->setTld('fr')
15
+                    ->setLanguage('fr')
16
+                    ->setSleep(1)
17
+                    ->setCache(null)
18 18
         ;
19 19
         $results =  $Google->extractResults();
20 20
 
Please login to merge, or discard this patch.