Completed
Push — master ( 7f0669...b45a14 )
by Ross
02:56
created
tests/Responses/UpdateDnsRecordsTest.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
         $class = $this->createClass();
75 75
         $this->assertEquals('9.8.7.6',
76 76
                             $class->getResult()
77
-                                  ->getContent()
77
+                                    ->getContent()
78 78
         );
79 79
     }
80 80
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -203,7 +203,7 @@
 block discarded – undo
203 203
             $this->fail('Exception was not thrown');
204 204
         }
205 205
         catch (CloudFlareException $exception) {
206
-            $expectedError = 'There was an error making the ' . UpdateDnsRecords::class. ':' . PHP_EOL . $message;
206
+            $expectedError = 'There was an error making the '.UpdateDnsRecords::class.':'.PHP_EOL.$message;
207 207
 
208 208
             $this->assertEquals($expectedError, $exception->getMessage());
209 209
         }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -201,8 +201,7 @@
 block discarded – undo
201 201
         try {
202 202
             $this->createClass($json);
203 203
             $this->fail('Exception was not thrown');
204
-        }
205
-        catch (CloudFlareException $exception) {
204
+        } catch (CloudFlareException $exception) {
206 205
             $expectedError = 'There was an error making the ' . UpdateDnsRecords::class. ':' . PHP_EOL . $message;
207 206
 
208 207
             $this->assertEquals($expectedError, $exception->getMessage());
Please login to merge, or discard this patch.