Renamed method

This commit is contained in:
Yanick Witschi
2017-02-03 08:43:24 +01:00
parent b2099105fc
commit 532a3146b0
7 changed files with 10 additions and 11 deletions
@@ -45,7 +45,7 @@ class DumpAutoloadTask extends AbstractTask
{
$options = array_merge(
['path' => 'composer', 'flags' => '--optimize'],
$this->runtime->getMergedEnvAndConfigOption('composer', [], []),
$this->runtime->getMergedOption('composer'),
$this->options
);
+1 -1
View File
@@ -45,7 +45,7 @@ class InstallTask extends AbstractTask
{
$options = array_merge(
['path' => 'composer', 'flags' => '--optimize-autoloader'],
$this->runtime->getMergedEnvAndConfigOption('composer', [], []),
$this->runtime->getMergedOption('composer'),
$this->options
);
+1 -1
View File
@@ -45,7 +45,7 @@ class AsseticDumpTask extends AbstractTask
{
$options = array_merge(
['console' => 'bin/console', 'env' => 'dev', 'flags' => ''],
$this->runtime->getMergedEnvAndConfigOption('symfony', [], []),
$this->runtime->getMergedOption('symfony'),
$this->options
);
@@ -45,7 +45,7 @@ class AssetsInstallTask extends AbstractTask
{
$options = array_merge(
['console' => 'bin/console', 'env' => 'dev', 'target' => 'web', 'flags' => '--symlink --relative'],
$this->runtime->getMergedEnvAndConfigOption('symfony', [], []),
$this->runtime->getMergedOption('symfony'),
$this->options
);
+1 -1
View File
@@ -45,7 +45,7 @@ class CacheClearTask extends AbstractTask
{
$options = array_merge(
['console' => 'bin/console', 'env' => 'dev', 'flags' => ''],
$this->runtime->getMergedEnvAndConfigOption('symfony', [], []),
$this->runtime->getMergedOption('symfony'),
$this->options
);
+1 -1
View File
@@ -45,7 +45,7 @@ class CacheWarmupTask extends AbstractTask
{
$options = array_merge(
['console' => 'bin/console', 'env' => 'dev', 'flags' => ''],
$this->runtime->getMergedEnvAndConfigOption('symfony', [], []),
$this->runtime->getMergedOption('symfony'),
$this->options
);