Passed
Push — master ( 6ac744...48d05f )
by Mohammad
07:18
created
src/Traits/WebSocketMessagesManager.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
 use Shamaseen\Laravel\Ratchet\Exceptions\WebSocketException;
13 13
 use Ratchet\ConnectionInterface;
14
-use Shamaseen\Laravel\Ratchet\Objects\Rooms\Room;
15 14
 
16 15
 /**
17 16
  * Trait WebSocketMessagesManager
Please login to merge, or discard this 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/Traits/Validation.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
      * @throws \Illuminate\Validation\ValidationException
48 48
      */
49 49
     public function validate($request, array $rules,
50
-                             array $messages = [], array $customAttributes = [])
50
+                                array $messages = [], array $customAttributes = [])
51 51
     {
52 52
         return $this->getValidationFactory()->make(
53 53
             (array) $request, $rules, $messages, $customAttributes
Please login to merge, or discard this patch.