Completed
Pull Request — master (#1)
by Victor DA COSTA
03:22
created
src/WindguruAPI.php 3 patches
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -13,12 +13,9 @@
 block discarded – undo
13 13
 
14 14
 namespace voidtek\WindguruIO;
15 15
 
16
-use Http\Client\Common\Plugin;
17 16
 use Http\Client\HttpClient;
18
-use Http\Message\UriFactory;
19 17
 use Http\Discovery\HttpClientDiscovery;
20 18
 use Http\Discovery\MessageFactoryDiscovery;
21
-use Psr\Http\Message\ResponseInterface;
22 19
 
23 20
 /**
24 21
  * WindguruAPI Class
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      * Example: 'https://www.windguru.cz/int/iapi.php?q=ads_spot&id_spot%5B%5D=42'
38 38
      * 
39 39
      * @var string;
40
-    */
40
+     */
41 41
     const ENDPOINT='http://www.windguru.cz';
42 42
     
43 43
     /**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      * 
39 39
      * @var string;
40 40
     */
41
-    const ENDPOINT='http://www.windguru.cz';
41
+    const ENDPOINT = 'http://www.windguru.cz';
42 42
     
43 43
     /**
44 44
      * Private HttpClient
Please login to merge, or discard this patch.
demo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
  * @link     https://github.com/voidtek/windguru.io
12 12
  */
13 13
 
14
-require_once __DIR__ . "/vendor/autoload.php";
14
+require_once __DIR__."/vendor/autoload.php";
15 15
 
16 16
 use voidtek\WindguruIO\WindguruAPI;
17 17
 
Please login to merge, or discard this patch.