Skip to content

Commit 2b87f2f

Browse files
committed
fixed CS
1 parent 3ae56bc commit 2b87f2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Command/AssetsInstallCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
138138
/** @var BundleInterface $bundle */
139139
foreach ($kernel->getBundles() as $bundle) {
140140
if (!method_exists($bundle, 'getPublicDir')) {
141-
@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);
141+
@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);
142142
$publicDir = 'Resources/public';
143143
} else {
144144
$publicDir = ltrim($bundle->getPublicDir(), '\\/');

0 commit comments

Comments
 (0)