Passed
Push — master ( 1b6703...425d4d )
by Mohammad
04:36
created
src/Traits/WebSocketMessagesManager.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
      */
73 73
     function sendBack($data)
74 74
     {
75
-       $this->sendToWebSocketUser($this->conn,$data);
75
+        $this->sendToWebSocketUser($this->conn,$data);
76 76
     }
77 77
 
78 78
     /**
Please login to merge, or discard this patch.
src/Objects/Clients/Client.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
      */
46 46
     function onClose(string $route)
47 47
     {
48
-       array_push($this->onCloseRoutes,$route);
48
+        array_push($this->onCloseRoutes,$route);
49 49
 
50 50
         return $this;
51 51
     }
Please login to merge, or discard this patch.
src/Traits/Validation.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
      * @throws \Illuminate\Validation\ValidationException
49 49
      */
50 50
     public function validate($request, array $rules,
51
-                             array $messages = [], array $customAttributes = [])
51
+                                array $messages = [], array $customAttributes = [])
52 52
     {
53 53
         if($request instanceof Collection)
54 54
             $request = $request->toArray();
Please login to merge, or discard this patch.