Completed
Pull Request — master (#70)
by
unknown
01:46
created
src/AfriCC/EPP/Client.php 5 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
             $this->chunk_size = 1024;
40 40
         }
41 41
 
42
-        if (isset($config['verify_peer_name'])) {
42
+        if (isset($config['verify_peer_name'])) {
43 43
             $this->verify_peer_name = (bool)$config['verify_peer_name'];
44 44
         } else {
45 45
             $this->verify_peer_name = true;
Please login to merge, or discard this patch.
Switch Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
             $this->chunk_size = 1024;
40 40
         }
41 41
 
42
-        if (isset($config['verify_peer_name'])) {
42
+        if (isset($config['verify_peer_name'])) {
43 43
             $this->verify_peer_name = (bool)$config['verify_peer_name'];
44 44
         } else {
45 45
             $this->verify_peer_name = true;
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,8 +39,8 @@  discard block
 block discarded – undo
39 39
             $this->chunk_size = 1024;
40 40
         }
41 41
 
42
-        if (isset($config['verify_peer_name'])) {
43
-            $this->verify_peer_name = (bool)$config['verify_peer_name'];
42
+        if (isset($config['verify_peer_name'])) {
43
+            $this->verify_peer_name = (bool) $config['verify_peer_name'];
44 44
         } else {
45 45
             $this->verify_peer_name = true;
46 46
         }
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
         // filter out empty user provided values
83 83
         $options_array = array_filter(
84 84
             $options_array,
85
-            function ($var) {
85
+            function($var) {
86 86
                 return !is_null($var);
87 87
             }
88 88
         );
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
         $buffer = (string) $frame;
199 199
         $header = pack('N', mb_strlen($buffer, 'ASCII') + 4);
200 200
 
201
-        return $this->send($header . $buffer);
201
+        return $this->send($header.$buffer);
202 202
     }
203 203
 
204 204
     /**
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
             $this->chunk_size = 1024;
40 40
         }
41 41
 
42
-        if (isset($config['verify_peer_name'])) {
42
+        if (isset($config['verify_peer_name'])) {
43 43
             $this->verify_peer_name = (bool)$config['verify_peer_name'];
44 44
         } else {
45 45
             $this->verify_peer_name = true;
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
             $this->chunk_size = 1024;
40 40
         }
41 41
 
42
-        if (isset($config['verify_peer_name'])) {
42
+        if (isset($config['verify_peer_name'])) {
43 43
             $this->verify_peer_name = (bool)$config['verify_peer_name'];
44 44
         } else {
45 45
             $this->verify_peer_name = true;
Please login to merge, or discard this patch.