mirror of
https://github.com/composer/composer
synced 2025-05-10 17:12:51 +00:00
Used shorthand version for ternary operator
This commit is contained in:
parent
b35e762354
commit
9e592f19a1
1 changed files with 2 additions and 6 deletions
|
@ -138,12 +138,8 @@ EOT
|
|||
// Get the local composer.json, global config.json, or if the user
|
||||
// passed in a file to use
|
||||
$configFile = $input->getOption('global')
|
||||
? ($this->config->get('home').'/config.json')
|
||||
: (
|
||||
$input->getOption('file')
|
||||
? $input->getOption('file')
|
||||
: (trim(getenv('COMPOSER')) ? trim(getenv('COMPOSER')) : 'composer.json')
|
||||
);
|
||||
? ($this->config->get('home') . '/config.json')
|
||||
: ($input->getOption('file') ?: (trim(getenv('COMPOSER')) ? trim(getenv('COMPOSER')) : 'composer.json'));
|
||||
|
||||
// create global composer.json if this was invoked using `composer global config`
|
||||
if ($configFile === 'composer.json' && !file_exists($configFile) && realpath(getcwd()) === realpath($this->config->get('home'))) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue