@@ -19,7 +19,7 @@ discard block |
||
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 |
||
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 |
||
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 |
@@ -19,7 +19,7 @@ discard block |
||
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 |
||
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 |
||
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 |