Skip to content

Commit a80a16d

Browse files
committed
Updated indentation and Upgrade docs
1 parent 11c383e commit a80a16d

2 files changed

Lines changed: 7 additions & 9 deletions

File tree

.php-cs-fixer.dist.php

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
<?php
22

3-
$finder = PhpCsFixer\Finder::create()
4-
->in(__DIR__)
5-
;
6-
3+
$finder = PhpCsFixer\Finder::create()->in(__DIR__);
74
$config = new PhpCsFixer\Config();
8-
return $config->setRules(array(
5+
6+
return $config->setRules([
97
'@Symfony' => true,
108
'phpdoc_annotation_without_dot' => false,
11-
))
12-
->setFinder($finder)
13-
;
9+
])
10+
->setFinder($finder);

UPGRADE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ flysystem-bundle 3.0 relies on Flysystem 3.0, PHP 8.0+ and Flysystem adapters 3.
2323
The changes in this version focus on dropping support for EOL versions of PHP and Symfony and
2424
adding support for Azure Blob Storage.
2525
No new backwards incompatible code changes have been directly introduced by this new bundle version.
26-
As with any major version upgrade, please be sure to test thoroughly.
26+
You should read the [Flysystem 3.x Change Log](https://github.com/thephpleague/flysystem/blob/3.x/CHANGELOG.md)
27+
for any changes that may effect you.
2728

2829
These changes are;
2930

0 commit comments

Comments
 (0)