8000 fixed CS · symfony/symfony@8b72a6c · GitHub
[go: up one dir, main page]

Skip to content

Commit 8b72a6c

Browse files
committed
fixed CS
1 parent cfb1ffb commit 8b72a6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Bundle/FrameworkBundle/Routing/DelegatingLoader.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,15 @@ public function load($resource, $type = null)
8787
try {
8888
$controller = $this->parser->parse($controller, false);
8989

90-
@trigger_error(sprintf('Referencing controllers with %s is deprecated since Symfony 4.1. Use %s instead.', $deprecatedNotation, $controller), E_USER_DEPRECATED);
90+
@trigger_error(sprintf('Referencing controllers with %s is deprecated since Symfony 4.1, use "%s" instead.', $deprecatedNotation, $controller), E_USER_DEPRECATED);
9191
} catch (\InvalidArgumentException $e) {
9292
// unable to optimize unknown notation
9393
}
9494
}
9595

9696
if (1 === substr_count($controller, ':')) {
9797
$nonDeprecatedNotation = str_replace(':', '::', $controller);
98-
@trigger_error(sprintf('Referencing controllers with a single colon is deprecated since Symfony 4.1. Use %s instead.', $nonDeprecatedNotation), E_USER_DEPRECATED);
98+
@trigger_error(sprintf('Referencing controllers with a single colon is deprecated since Symfony 4.1, use "%s" instead.', $nonDeprecatedNotation), E_USER_DEPRECATED);
9999
}
100100

101101
$route->setDefault('_controller', $controller);

0 commit comments

Comments
 (0)
0