Skip to content

Commit 7ed1591

Browse files
committed
Tokenizer::$eolChar: change default value
... to be a more logical one. The property is supposed to be a `string`, so having an array as a default value is confusing.
1 parent c248a92 commit 7ed1591

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tokenizers/Tokenizer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ abstract class Tokenizer
2727
*
2828
* @var string
2929
*/
30-
protected $eolChar = [];
30+
protected $eolChar = '';
3131

3232
/**
3333
* A token-based representation of the content.

0 commit comments

Comments
 (0)