Completed
Push — master ( 894cda...3fc6cc )
by Oleksii
06:22
created
src/Exception/SearchLimitException.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
      * SearchLimitException constructor.
18 18
      *
19 19
      * @param string $message
20
-     * @param \Exception $previous
21 20
      */
22 21
     public function __construct($message)
23 22
     {
Please login to merge, or discard this patch.
src/Request/Request.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,6 @@
 block discarded – undo
43 43
     /**
44 44
      * Language, you want to get keyword suggestions for.
45 45
      *
46
-     * @param string $countryCode Two characters of country code
47 46
      *
48 47
      * @return $this
49 48
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
      */
109 109
     public function complete($flag = false)
110 110
     {
111
-        $this->addQueryParam('complete', !!$flag ? "true" : "false" );
111
+        $this->addQueryParam('complete', !!$flag ? "true" : "false");
112 112
         return $this;
113 113
     }
114 114
 
Please login to merge, or discard this patch.
src/Response/Response.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
             foreach ($this->decodedRaw->results as $k=>$res) {
52 52
                 if ($k == '_empty_') {
53 53
                     $this->keywords[] = ['kw'=>$res[0]->string,
54
-                                         'vol'=>intval($res[0]->volume)];
54
+                                            'vol'=>intval($res[0]->volume)];
55 55
                     continue;
56 56
                 }
57 57
 
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
                         $volume = intval($keyword->volume) > 0 ? intval($keyword->volume) : 0;
62 62
                     }
63 63
                     $this->keywords[] = ['kw'=>$keyword->string,
64
-                                         'vol'=>$volume];
64
+                                            'vol'=>$volume];
65 65
                 }
66 66
             }
67 67
         }
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      */
73 73
     public function getKeywords()
74 74
     {
75
-       $this->initKeywordsData();
76
-       return $this->keywords;
75
+        $this->initKeywordsData();
76
+        return $this->keywords;
77 77
     }
78 78
 }
Please login to merge, or discard this patch.