From 3a62ffbe8860afeaef167ba8f1b455af8275faef Mon Sep 17 00:00:00 2001 From: Benjamin Brahmer Date: Thu, 3 Sep 2020 12:02:17 +0200 Subject: run phpcbf Signed-off-by: Benjamin Brahmer --- composer.lock | 10 +++++----- lib/Config/Config.php | 2 +- tests/Unit/Config/ConfigTest.php | 4 +++- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/composer.lock b/composer.lock index d615c90ab..6e091a9ca 100644 --- a/composer.lock +++ b/composer.lock @@ -823,16 +823,16 @@ }, { "name": "phpstan/phpstan", - "version": "0.12.40", + "version": "0.12.42", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "dce7293ad7b59fc09a9ab9b0b5b44902c092ca17" + "reference": "7c43b7c2d5ca6554f6231e82e342a710163ac5f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/dce7293ad7b59fc09a9ab9b0b5b44902c092ca17", - "reference": "dce7293ad7b59fc09a9ab9b0b5b44902c092ca17", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/7c43b7c2d5ca6554f6231e82e342a710163ac5f4", + "reference": "7c43b7c2d5ca6554f6231e82e342a710163ac5f4", "shasum": "" }, "require": { @@ -875,7 +875,7 @@ "type": "tidelift" } ], - "time": "2020-08-26T19:06:20+00:00" + "time": "2020-09-02T13:14:53+00:00" }, { "name": "phpunit/php-code-coverage", diff --git a/lib/Config/Config.php b/lib/Config/Config.php index 727cbdb7d..97099db48 100644 --- a/lib/Config/Config.php +++ b/lib/Config/Config.php @@ -199,7 +199,7 @@ class Config 'updateInterval = ' . $this->updateInterval . "\n" . 'useCronUpdates = ' . - var_export($this->useCronUpdates, true); + var_export($this->useCronUpdates, true); ; $this->fileSystem->get($configPath)->putContent($ini); diff --git a/tests/Unit/Config/ConfigTest.php b/tests/Unit/Config/ConfigTest.php index 4cad07c2d..60a292afc 100644 --- a/tests/Unit/Config/ConfigTest.php +++ b/tests/Unit/Config/ConfigTest.php @@ -35,7 +35,9 @@ class ConfigTest extends TestCase $this->fileSystem = $this->getMockBuilder(Folder::class)->getMock(); $this->loggerParams = ['hi']; $this->config = new Config( - $this->fileSystem, $this->logger, $this->loggerParams + $this->fileSystem, + $this->logger, + $this->loggerParams ); $this->configPath = 'config.json'; } -- cgit v1.2.3