Skip to content

Commit c8a69d9

Browse files
committed
CS
1 parent 1a339bb commit c8a69d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/InputCharacter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ public function __construct(string $data)
5050

5151
public function isHandledControl() : bool
5252
{
53-
return isset(static::$controls[$this->data]);
53+
return isset(static::$controls[$this->data]);
5454
}
5555

5656
/**
5757
* Is this character a control sequence?
5858
*/
5959
public function isControl() : bool
6060
{
61-
return preg_match( '/[\x00-\x1F\x7F]/', $this->data);
61+
return preg_match('/[\x00-\x1F\x7F]/', $this->data);
6262
}
6363

6464
/**

0 commit comments

Comments
 (0)