8000 fixed CS for previous merge · blahy/symfony@91e977d · GitHub
[go: up one dir, main page]

Skip to content

Commit 91e977d

Browse files
committed
fixed CS for previous merge
1 parent 7c6b288 commit 91e977d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Symfony/Bundle/FrameworkBundle/Command/AssetsInstallCommand.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
8383
// Create the bundles directory otherwise symlink will fail.
8484
$filesystem->mkdir($targetArg.'/bundles/', 0777);
8585

86-
$copyMethod = ($input->getOption('symlink')) ? "symlink":"hard copy";
87-
$output->writeln(sprintf("Installing assets using <comment>%s</comment> option", $copyMethod));
86+
$output->writeln(sprintf("Installing assets using the <comment>%s</comment> option", $input->getOption('symlink') ? 'symlink' : 'hard copy'));
8887

8988
foreach ($this->getContainer()->get('kernel')->getBundles() as $bundle) {
9089
if (is_dir($originDir = $bundle->getPath().'/Resources/public')) {

0 commit comments

Comments
 (0)
0