Test Failed
Push — master ( 4d28f7...46aae2 )
by Meysam
03:28
created
src/ToOne.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         try {
22 22
             $client = new Client();
23
-            $request = $client->post($url, ['json' => $data]);
23
+            $request = $client->post($url, [ 'json' => $data ]);
24 24
             $response = [
25 25
                 'status' => true,
26 26
                 'providerResult' => json_decode($request->getBody()->getContents(), true),
Please login to merge, or discard this patch.
src/ServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
             'hostiran-sms-provider'
21 21
         );
22 22
 
23
-        $this->app->bind('hostiran-sms-provider', function () {
23
+        $this->app->bind('hostiran-sms-provider', function() {
24 24
             return new HostiranSmsProvider();
25 25
         });
26 26
     }
Please login to merge, or discard this patch.
src/ToMany.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         ini_set('soap.wsdl_cache_enabled', '0');
22 22
         try {
23
-            $client = new SoapClient($url, ['encoding' => 'UTF-8']);
23
+            $client = new SoapClient($url, [ 'encoding' => 'UTF-8' ]);
24 24
             $response = [
25 25
                 'status' => true,
26 26
                 'providerResult' => $client->AddSchedule($data),
Please login to merge, or discard this patch.