Made getComposerFile static.
parent
dfb5516af6
commit
8d1d060d66
|
@ -51,8 +51,7 @@ EOT
|
|||
|
||||
protected function execute(InputInterface $input, OutputInterface $output)
|
||||
{
|
||||
$factory = new Factory;
|
||||
$file = $factory->getComposerFile();
|
||||
$file = Factory::getComposerFile();
|
||||
|
||||
if (!file_exists($file)) {
|
||||
$output->writeln('<error>'.$file.' not found.</error>');
|
||||
|
|
|
@ -113,7 +113,7 @@ class Factory
|
|||
return $config;
|
||||
}
|
||||
|
||||
public function getComposerFile()
|
||||
public static function getComposerFile()
|
||||
{
|
||||
return getenv('COMPOSER') ?: 'composer.json';
|
||||
}
|
||||
|
@ -171,7 +171,7 @@ class Factory
|
|||
{
|
||||
// load Composer configuration
|
||||
if (null === $localConfig) {
|
||||
$localConfig = $this->getComposerFile();
|
||||
$localConfig = static::getComposerFile();
|
||||
}
|
||||
|
||||
if (is_string($localConfig)) {
|
||||
|
|
Loading…
Reference in New Issue