diff options
-rw-r--r-- | composer.json | 2 | ||||
-rw-r--r-- | lib/private/Files/Stream/HashWrapper.php | 4 | ||||
-rw-r--r-- | tests/lib/Files/Stream/HashWrapperTest.php | 4 | ||||
-rw-r--r-- | version.php | 4 |
4 files changed, 9 insertions, 5 deletions
diff --git a/composer.json b/composer.json index 7707ac537cf..ee73b60f431 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ }, "scripts": { "cs:fix": "php-cs-fixer fix", - "cs:check": "php-cs-fixer fix --dry-run", + "cs:check": "php-cs-fixer fix --dry-run --diff", "lint": "find . -name \\*.php -not -path './lib/composer/*' -not -path './build/.phan/*' -exec php -l \"{}\" \\;" } } diff --git a/lib/private/Files/Stream/HashWrapper.php b/lib/private/Files/Stream/HashWrapper.php index 048e50794e8..937ee521c80 100644 --- a/lib/private/Files/Stream/HashWrapper.php +++ b/lib/private/Files/Stream/HashWrapper.php @@ -1,4 +1,6 @@ -<?php declare(strict_types=1); +<?php + +declare(strict_types=1); /** * @copyright Copyright (c) 2020 Robin Appelman <robin@icewind.nl> * diff --git a/tests/lib/Files/Stream/HashWrapperTest.php b/tests/lib/Files/Stream/HashWrapperTest.php index 7066bf857aa..e4bee18070d 100644 --- a/tests/lib/Files/Stream/HashWrapperTest.php +++ b/tests/lib/Files/Stream/HashWrapperTest.php @@ -1,4 +1,6 @@ -<?php declare(strict_types=1); +<?php + +declare(strict_types=1); /** * @copyright Copyright (c) 2020 Robin Appelman <robin@icewind.nl> * diff --git a/version.php b/version.php index 68900b18960..8b1c9244b0b 100644 --- a/version.php +++ b/version.php @@ -29,10 +29,10 @@ // between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel // when updating major/minor version number. -$OC_Version = [19, 0, 0, 3]; +$OC_Version = [19, 0, 0, 4]; // The human readable string -$OC_VersionString = '19.0.0 beta 2'; +$OC_VersionString = '19.0.0 beta 3'; $OC_VersionCanBeUpgradedFrom = [ 'nextcloud' => [ |