1
0
Fork 0

Made getComposerFile static.

pull/1383/head
Beau Simensen 2012-12-02 16:24:39 -08:00
parent dfb5516af6
commit 8d1d060d66
2 changed files with 3 additions and 4 deletions

View File

@ -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>');

View File

@ -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)) {