You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Command/LintCommand.php
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -93,8 +93,8 @@ protected function execute(InputInterface $input, OutputInterface $output)
93
93
94
94
// @deprecated to be removed in 5.0
95
95
if (!$filenames) {
96
-
if (0 === ftell(STDIN)) {
97
-
@trigger_error('Piping content from STDIN to the "lint:yaml" command without passing the dash symbol "-" as argument is deprecated since Symfony 4.4.', E_USER_DEPRECATED);
96
+
if (0 === ftell(\STDIN)) {
97
+
@trigger_error('Piping content from STDIN to the "lint:yaml" command without passing the dash symbol "-" as argument is deprecated since Symfony 4.4.', \E_USER_DEPRECATED);
Copy file name to clipboardExpand all lines: Parser.php
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -443,7 +443,7 @@ private function doParse(string $value, int $flags)
443
443
}
444
444
445
445
if (false !== strpos($line, ': ')) {
446
-
@trigger_error('Support for mapping keys in multi-line blocks is deprecated since Symfony 4.3 and will throw a ParseException in 5.0.', E_USER_DEPRECATED);
446
+
@trigger_error('Support for mapping keys in multi-line blocks is deprecated since Symfony 4.3 and will throw a ParseException in 5.0.', \E_USER_DEPRECATED);
447
447
}
448
448
449
449
if ('' === trim($line)) {
@@ -1072,19 +1072,19 @@ public static function preg_match(string $pattern, string $subject, array &$matc
0 commit comments