From 8c1f61f5a66cc52a5882fae794845820c963d0e2 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 12 Jul 2019 07:47:23 +0300 Subject: [PATCH] fixed CS --- .../Bundle/FrameworkBundle/Command/AssetsInstallCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Command/AssetsInstallCommand.php b/src/Symfony/Bundle/FrameworkBundle/Command/AssetsInstallCommand.php index 987ecbf57e..ff7352790c 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Command/AssetsInstallCommand.php +++ b/src/Symfony/Bundle/FrameworkBundle/Command/AssetsInstallCommand.php @@ -138,7 +138,7 @@ EOT /** @var BundleInterface $bundle */ foreach ($kernel->getBundles() as $bundle) { if (!method_exists($bundle, 'getPublicDir')) { - @trigger_error(sprintf('Not defining "getPublicDir()" method in the "%s" class is deprecated since Symfony 4.4 and will not be supported in 5.0.', get_class($bundle)), E_USER_DEPRECATED); + @trigger_error(sprintf('Not defining "getPublicDir()" method in the "%s" class is deprecated since Symfony 4.4 and will not be supported in 5.0.', \get_class($bundle)), E_USER_DEPRECATED); $publicDir = 'Resources/public'; } else { $publicDir = ltrim($bundle->getPublicDir(), '\\/');