Completed
Push — master ( 2eebbc...f22af2 )
by Dmitry
01:57
created
test/ConfigurableTraitTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     {
31 31
         $mock = $this->buildConfigurableClass();
32 32
         $mock->setOptions(['withSetterProperty' => 2]);
33
-        $this->assertEquals($mock->withSetterProperty, 3);  // Setter logic: 2 + 1
33
+        $this->assertEquals($mock->withSetterProperty, 3); // Setter logic: 2 + 1
34 34
     }
35 35
 
36 36
     public function testInitPublicProperty()
Please login to merge, or discard this patch.
test/GenericClientTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
 
61 61
         $serverResponse = $client->getCaptchaResult('');
62 62
 
63
-        if($response==='CAPCHA_NOT_READY') {
63
+        if ($response === 'CAPCHA_NOT_READY') {
64 64
             $this->assertFalse($serverResponse);
65 65
         } else {
66 66
             $this->assertEquals('1234567890', $serverResponse);
Please login to merge, or discard this patch.