Skip to content

Commit

Permalink
Minor - format code
Browse files Browse the repository at this point in the history
  • Loading branch information
jmontoyaa committed Jan 4, 2018
1 parent b6b9716 commit 09979d2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .flintci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
services:
phpcsfixer: true
yamllint: true
yamllint: true
2 changes: 1 addition & 1 deletion .scrutinizer.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
checks:
php: true
php: true
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ php:
- 7.1
- 7.2
before_script:
- composer install --dev --no-interaction
- composer install --dev --no-interaction
script: vendor/bin/phpunit
4 changes: 2 additions & 2 deletions src/Chash/Command/Chash/SelfUpdateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ protected function configure()
{
$this
->setName('chash:self-update')
->setAliases(array('selfupdate'))
->setAliases(['selfupdate'])
->addOption('temp-folder', null, InputOption::VALUE_OPTIONAL, 'The temp folder', '/tmp')
->addOption('src-destination', null, InputOption::VALUE_OPTIONAL, 'The destination folder')
->setDescription('Updates chash to the latest version');
Expand Down Expand Up @@ -84,7 +84,7 @@ protected function execute(Console\Input\InputInterface $input, Console\Output\O
return 0;
}
$fs = new \Symfony\Component\Filesystem\Filesystem();
$fs->mirror($folderPath.'/chash-master', $destinationFolder, null, array('override' => true));
$fs->mirror($folderPath.'/chash-master', $destinationFolder, null, ['override' => true]);
$output->writeln('Copying '.$folderPath.'/chash-master to '.$destinationFolder);
}
}

0 comments on commit 09979d2

Please sign in to comment.