getParameter('target', 'web'); $symlink = $this->getParameter('symlink', false); $relative = $this->getParameter('relative', false); $env = $this->getParameter('env', 'dev'); if ($relative) { $symlink = true; } $command = 'app/console assets:install ' . ($symlink ? '--symlink' : '') . ' ' . ($relative ? '--relative' : '') . ' --env=' . $env . ' ' . $target; $result = $this->_runLocalCommand($command); return $result; } }