Test Failed
Push — master ( 4902e0...4e23df )
by Mike
02:23
created
src/Request/Abstracts/AbstractRequest.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -133,6 +133,7 @@
 block discarded – undo
133 133
 
134 134
     /**
135 135
      * @inheritdoc
136
+     * @param string $body
136 137
      */
137 138
     public function setBody($body) {
138 139
         $this->body = $body;
Please login to merge, or discard this patch.
src/Client/Abstracts/AbstractClient.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,6 +72,7 @@  discard block
 block discarded – undo
72 72
 
73 73
     /**
74 74
      * @inheritdoc
75
+     * @param string $server
75 76
      */
76 77
     public function setServer($server) {
77 78
         $this->server = $server;
@@ -150,7 +151,7 @@  discard block
 block discarded – undo
150 151
     /**
151 152
      * @param $funcName
152 153
      * @param $className
153
-     * @return bool
154
+     * @return AbstractClient
154 155
      * @throws EntryPointException
155 156
      */
156 157
     public function registerEntryPoint($funcName, $className){
@@ -246,6 +247,7 @@  discard block
 block discarded – undo
246 247
 
247 248
     /**
248 249
      * @inheritdoc
250
+     * @param \stdClass $token
249 251
      */
250 252
     public static function storeToken($token, $client_id) {
251 253
         static::$_STORED_TOKENS[$client_id] = $token;
Please login to merge, or discard this patch.