Completed
Pull Request — master (#21)
by Ekin
02:21
created
config-sample.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         'certificate' => '/path/to/certificate.pem',
33 33
         'key' => '/path/to/key.pem',
34 34
     ],
35
-    */
35
+     */
36 36
     /**
37 37
      * Either use a token or a username + password login.
38 38
      * Note for 2fa users, you can only use tokens.
Please login to merge, or discard this patch.
src/Client/GitAmp.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,11 +53,11 @@
 block discarded – undo
53 53
             $promise = $this->client->request($request);
54 54
 
55 55
             $promise->when(function($error, $result) {
56
-                if($result->getStatus() !== 200) {
56
+                if ($result->getStatus() !== 200) {
57 57
                     throw new RequestFailedException(
58 58
                         'A non-200 response status ('
59 59
                         . $result->getStatus() . ' - '
60
-                        . $result->getReason() .') was encountered'
60
+                        . $result->getReason() . ') was encountered'
61 61
                     );
62 62
                 }
63 63
             });
Please login to merge, or discard this patch.