Passed
Push — master ( 86cde0...e6ca11 )
by Jim
02:02
created
tests/TimCloudTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     {
25 25
         $t = $this->timCloud();
26 26
 
27
-        $this->assertTrue(file_exists($t['path.cert'] . '/cacert.pem'));
27
+        $this->assertTrue(file_exists($t['path.cert'].'/cacert.pem'));
28 28
     }
29 29
 
30 30
     public function testRefreshConfiguration()
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     public function testRequestApi()
76 76
     {
77 77
         $t = $this->timCloud();
78
-        $t->offsetSet('im', function ()  {
78
+        $t->offsetSet('im', function() {
79 79
             $m = Mockery::mock('im');
80 80
             $m->shouldReceive('handle')->withAnyArgs()->andReturn(new ResponseBag([
81 81
                 'ActionStatus' => 'OK'
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
             'prikey'     => phpunit_env('private_key', 'openssl_private_key'),
98 98
             'pubkey'     => phpunit_env('public_key', 'openssl_public_key'),
99 99
         ], [
100
-            'TLSSig' => function () {
100
+            'TLSSig' => function() {
101 101
                 $m = Mockery::mock('TLSSig');
102 102
                 $m->shouldReceive('genSig')->withAnyArgs()->andReturn('test usersig');
103 103
                 return $m;
Please login to merge, or discard this patch.