Skip to content
Snippets Groups Projects
Commit 7a87a62f authored by Demian Katz's avatar Demian Katz
Browse files

Do not allow non-printable characters.

parent 14550f5b
No related merge requests found
...@@ -56,6 +56,7 @@ $rules = [ ...@@ -56,6 +56,7 @@ $rules = [
'no_useless_return' => true, 'no_useless_return' => true,
'no_whitespace_before_comma_in_array' => true, 'no_whitespace_before_comma_in_array' => true,
'no_whitespace_in_blank_line' => true, 'no_whitespace_in_blank_line' => true,
'non_printable_character' => true,
'ordered_imports' => true, 'ordered_imports' => true,
'phpdoc_no_access' => true, 'phpdoc_no_access' => true,
'single_blank_line_at_eof' => true, 'single_blank_line_at_eof' => true,
......
...@@ -50,6 +50,7 @@ $rules = [ ...@@ -50,6 +50,7 @@ $rules = [
'no_useless_return' => true, 'no_useless_return' => true,
'no_whitespace_before_comma_in_array' => true, 'no_whitespace_before_comma_in_array' => true,
'no_whitespace_in_blank_line' => true, 'no_whitespace_in_blank_line' => true,
'non_printable_character' => true,
'ordered_imports' => true, 'ordered_imports' => true,
'phpdoc_no_access' => true, 'phpdoc_no_access' => true,
'single_blank_line_at_eof' => true, 'single_blank_line_at_eof' => true,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment