@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | */ |
59 | 59 | public function isControl() : bool |
60 | 60 | { |
61 | - return preg_match( '/[\x00-\x1F\x7F]/', $this->data); |
|
61 | + return preg_match('/[\x00-\x1F\x7F]/', $this->data); |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | /** |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | */ |
67 | 67 | public function isNotControl() : bool |
68 | 68 | { |
69 | - return ! $this->isControl(); |
|
69 | + return !$this->isControl(); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | /** |