src/Task/BuiltIn/Symfony/AsseticDumpTask.php 1 location
|
@@ 44-53 (lines=10) @@
|
| 41 |
|
return $process->isSuccessful(); |
| 42 |
|
} |
| 43 |
|
|
| 44 |
|
protected function getOptions() |
| 45 |
|
{ |
| 46 |
|
$options = array_merge( |
| 47 |
|
['console' => 'bin/console', 'env' => 'dev', 'flags' => ''], |
| 48 |
|
$this->runtime->getMergedOption('symfony'), |
| 49 |
|
$this->options |
| 50 |
|
); |
| 51 |
|
|
| 52 |
|
return $options; |
| 53 |
|
} |
| 54 |
|
} |
| 55 |
|
|
src/Task/BuiltIn/Symfony/AbstractSymfonyTask.php 1 location
|
@@ 22-32 (lines=11) @@
|
| 19 |
|
*/ |
| 20 |
|
abstract class AbstractSymfonyTask extends AbstractTask |
| 21 |
|
{ |
| 22 |
|
protected function getOptions() |
| 23 |
|
{ |
| 24 |
|
$options = array_merge( |
| 25 |
|
['console' => 'bin/console', 'env' => 'dev', 'flags' => ''], |
| 26 |
|
$this->getSymfonyOptions(), |
| 27 |
|
$this->runtime->getMergedOption('symfony'), |
| 28 |
|
$this->options |
| 29 |
|
); |
| 30 |
|
|
| 31 |
|
return $options; |
| 32 |
|
} |
| 33 |
|
|
| 34 |
|
protected function getSymfonyOptions() |
| 35 |
|
{ |