Skip to content

Commit c2b28c1

Browse files
CS fixes
1 parent 07e392f commit c2b28c1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Dumper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public function dump($input, int $inline = 0, int $indent = 0, int $flags = 0):
110110
continue;
111111
}
112112

113-
if ($inline - 1 <= 0 || null === $value->getValue() || is_scalar($value->getValue())) {
113+
if ($inline - 1 <= 0 || null === $value->getValue() || \is_scalar($value->getValue())) {
114114
$output .= ' '.$this->dump($value->getValue(), $inline - 1, 0, $flags)."\n";
115115
} else {
116116
$output .= "\n";

Inline.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public static function parse(string $value = null, int $flags = 0, array &$refer
6868
return '';
6969
}
7070

71-
if (2 /* MB_OVERLOAD_STRING */ & (int) ini_get('mbstring.func_overload')) {
71+
if (2 /* MB_OVERLOAD_STRING */ & (int) \ini_get('mbstring.func_overload')) {
7272
$mbEncoding = mb_internal_encoding();
7373
mb_internal_encoding('ASCII');
7474
}

Parser.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public function parse(string $value, int $flags = 0)
8787

8888
$mbEncoding = null;
8989

90-
if (2 /* MB_OVERLOAD_STRING */ & (int) ini_get('mbstring.func_overload')) {
90+
if (2 /* MB_OVERLOAD_STRING */ & (int) \ini_get('mbstring.func_overload')) {
9191
$mbEncoding = mb_internal_encoding();
9292
mb_internal_encoding('UTF-8');
9393
}
@@ -988,7 +988,7 @@ private function isCurrentLineBlank(): bool
988988
*/
989989
private function isCurrentLineComment(): bool
990990
{
991-
//checking explicitly the first char of the trim is faster than loops or strpos
991+
// checking explicitly the first char of the trim is faster than loops or strpos
992992
$ltrimmedLine = ltrim($this->currentLine, ' ');
993993

994994
return '' !== $ltrimmedLine && '#' === $ltrimmedLine[0];

0 commit comments

Comments
 (0)