Completed
Push — master ( bd677b...cb6eb4 )
by Abdala
07:48 queued 04:16
created
src/Engines/Engine.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -68,6 +68,9 @@
 block discarded – undo
68 68
         return $this->error;
69 69
     }
70 70
 
71
+    /**
72
+     * @param string $value
73
+     */
71 74
     public function output($value)
72 75
     {
73 76
         echo $value;
Please login to merge, or discard this patch.
src/Engines/Google.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -80,6 +80,9 @@
 block discarded – undo
80 80
         return $resultFinal;
81 81
     }
82 82
 
83
+    /**
84
+     * @param string $urlOfSearch
85
+     */
83 86
     private function getBody($urlOfSearch)
84 87
     {
85 88
         $header = new FakeHeaders();
Please login to merge, or discard this patch.
src/Utils.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -119,6 +119,9 @@  discard block
 block discarded – undo
119 119
         return $crawler->filter('a');
120 120
     }
121 121
 
122
+    /**
123
+     * @param string $urlOfSearch
124
+     */
122 125
     public static function getBody($urlOfSearch, $proxy)
123 126
     {
124 127
         $header = new FakeHeaders();
@@ -147,6 +150,9 @@  discard block
 block discarded – undo
147 150
         return false;
148 151
     }
149 152
 
153
+    /**
154
+     * @param string $urlOfSearch
155
+     */
150 156
     public static function getBodyByVirginProxies($urlOfSearch, $urlProxie, $proxy)
151 157
     {
152 158
         $header = new FakeHeaders();
Please login to merge, or discard this patch.