Completed
Push — master ( 66e423...45459e )
by Joel
08:39
created
src/Client.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -219,7 +219,7 @@
 block discarded – undo
219 219
 
220 220
     private function box($method, $defaultReturnValue = null, array $args = [])
221 221
     {
222
-        set_error_handler(__CLASS__.'::handleInternalError');
222
+        set_error_handler(__CLASS__ . '::handleInternalError');
223 223
 
224 224
         try {
225 225
             $returnValue = \call_user_func_array([$this, $method], $args);
Please login to merge, or discard this patch.
src/Resources/fake_agent.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 set_time_limit(0);
15 15
 
16 16
 $socket_type = isset($_SERVER['RIO_SOCKET_TYPE']) ? $_SERVER['RIO_SOCKET_TYPE'] : 'AF_INET';
17
-$socket_path = isset($_SERVER['RIO_SOCKET_PATH']) ? $_SERVER['RIO_SOCKET_PATH'] : sys_get_temp_dir().'/fake_agent.sock';
17
+$socket_path = isset($_SERVER['RIO_SOCKET_PATH']) ? $_SERVER['RIO_SOCKET_PATH'] : sys_get_temp_dir() . '/fake_agent.sock';
18 18
 $ip = isset($_SERVER['RIO_HOST']) ? $_SERVER['RIO_HOST'] : 'localhost';
19 19
 $port = isset($_SERVER['RIO_PORT']) ? $_SERVER['RIO_PORT'] : 3100;
20 20
 $timeout = 1000000; // seconds
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         continue;
54 54
     }
55 55
 
56
-    $readPart = function ($client) {
56
+    $readPart = function($client) {
57 57
         $buffer = '';
58 58
         while (true) {
59 59
             if (stream_get_meta_data($client)['eof']) {
Please login to merge, or discard this patch.