diff options
Diffstat (limited to 'src/Utils')
-rw-r--r-- | src/Utils/Formatter.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Utils/Formatter.php b/src/Utils/Formatter.php index 3b17a2b..f4d9576 100644 --- a/src/Utils/Formatter.php +++ b/src/Utils/Formatter.php @@ -99,11 +99,11 @@ class Formatter $options['formats'] = $this->getDefaultFormats(); } - if (is_null($options['line_ending'])) { + if ($options['line_ending'] === null) { $options['line_ending'] = $options['type'] === 'html' ? '<br/>' : "\n"; } - if (is_null($options['indentation'])) { + if ($options['indentation'] === null) { $options['indentation'] = $options['type'] === 'html' ? ' ' : ' '; } |