Completed
Push — master ( c5f092...0db52b )
by Michael
05:56
created
src/DomainSearch.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -141,7 +141,6 @@  discard block
 block discarded – undo
141 141
      * Set the selected seniority levels to include in search
142 142
      * The possible values are junior, senior or executive. Several seniority levels can be selected
143 143
      *
144
-     * @param string|array $type
145 144
      * @return DomainSearch
146 145
      */
147 146
     public function seniority($seniority): self
@@ -157,7 +156,6 @@  discard block
 block discarded – undo
157 156
      * Set the selected departments to include in search
158 157
      * The possible values are executive, it, finance, management, sales, legal, support, hr, marketing or communication
159 158
      *
160
-     * @param string|array $type
161 159
      * @return DomainSearch
162 160
      */
163 161
     public function department($department): self
Please login to merge, or discard this patch.
src/Hunter.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Messerli90\Hunterio;
4 4
 
5
-use Illuminate\Support\Facades\Http;
6
-
7 5
 class Hunter extends HunterClient
8 6
 {
9 7
     public function account()
Please login to merge, or discard this patch.
src/HunterClient.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -53,6 +53,9 @@
 block discarded – undo
53 53
         });
54 54
     }
55 55
 
56
+    /**
57
+     * @return string
58
+     */
56 59
     protected function buildUrl()
57 60
     {
58 61
         return "{$this->base_url}/{$this->endpoint}";
Please login to merge, or discard this patch.