Passed
Branch master (09cd23)
by Mariano
03:22
created
src/Manager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     public function __construct(Credential $credential, ClientInterface $httpClient = null)
36 36
     {
37 37
         $this->credential = $credential;
38
-        $this->httpClient = $httpClient ? : new CurlClient($credential);
38
+        $this->httpClient = $httpClient ?: new CurlClient($credential);
39 39
     }
40 40
 
41 41
     /**
Please login to merge, or discard this patch.
src/Http/CurlClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     {
58 58
         $this->credential = $credential;
59 59
 
60
-        $this->curl = $curl ? : new Curl();
60
+        $this->curl = $curl ?: new Curl();
61 61
 
62 62
         $this->hostname = static::HOSTNAME_DEFAULT;
63 63
     }
Please login to merge, or discard this patch.