diff vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php @ 4:a9cd425dd02b

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:11:55 +0000
parents c75dbcec494b
children
line wrap: on
line diff
--- a/vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php	Thu Feb 28 11:14:44 2019 +0000
+++ b/vendor/symfony/http-kernel/Controller/TraceableControllerResolver.php	Thu Feb 28 13:11:55 2019 +0000
@@ -11,8 +11,8 @@
 
 namespace Symfony\Component\HttpKernel\Controller;
 
+use Symfony\Component\HttpFoundation\Request;
 use Symfony\Component\Stopwatch\Stopwatch;
-use Symfony\Component\HttpFoundation\Request;
 
 /**
  * @author Fabien Potencier <fabien@symfony.com>
@@ -60,7 +60,7 @@
      */
     public function getArguments(Request $request, $controller)
     {
-        @trigger_error(sprintf('The %s method is deprecated as of 3.1 and will be removed in 4.0. Please use the %s instead.', __METHOD__, TraceableArgumentResolver::class), E_USER_DEPRECATED);
+        @trigger_error(sprintf('The "%s()" method is deprecated as of 3.1 and will be removed in 4.0. Please use the %s instead.', __METHOD__, TraceableArgumentResolver::class), E_USER_DEPRECATED);
 
         $ret = $this->argumentResolver->getArguments($request, $controller);