Completed
Pull Request — master (#5)
by Aydin
02:08
created
src/InputCharacter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
66 66
      */
67 67
     public function isNotControl() : bool
68 68
     {
69
-        return ! $this->isControl();
69
+        return !$this->isControl();
70 70
     }
71 71
 
72 72
     /**
Please login to merge, or discard this patch.