Test Failed
Branch master (19e1ba)
by Robert
05:31 queued 03:10
created
src/Collections/EngagementHistory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     
20 20
     public function find($engagementID)
21 21
     {
22
-	    $result = $this->filter(function ($value, $key) use ($engagementID) {
22
+	    $result = $this->filter(function($value, $key) use ($engagementID) {
23 23
 		    return $value->info->sessionId == $engagementID;
24 24
 	    });
25 25
 	    
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 
29 29
     public function next()
30 30
     {
31
-        if (! $this->instance) {
31
+        if (!$this->instance) {
32 32
             return false;
33 33
         }
34 34
 
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 
52 52
     public function prev()
53 53
     {
54
-        if (! $this->instance) {
54
+        if (!$this->instance) {
55 55
             return false;
56 56
         }
57 57
 
Please login to merge, or discard this patch.
src/Collections/ConversationHistory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     
20 20
     public function find($engagementID)
21 21
     {
22
-	    $result = $this->filter(function ($value, $key) use ($engagementID) {
22
+	    $result = $this->filter(function($value, $key) use ($engagementID) {
23 23
 		    return $value->info->conversationId == $engagementID;
24 24
 	    });
25 25
 	    
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 
29 29
     public function next()
30 30
     {
31
-        if (! $this->instance) {
31
+        if (!$this->instance) {
32 32
             return false;
33 33
         }
34 34
 
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 
52 52
     public function prev()
53 53
     {
54
-        if (! $this->instance) {
54
+        if (!$this->instance) {
55 55
             return false;
56 56
         }
57 57
 
Please login to merge, or discard this patch.