We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2a7a82b + 0f8ebe5 commit 462a52cCopy full SHA for 462a52c
.php-cs-fixer.php
@@ -0,0 +1,13 @@
1
+<?php
2
+
3
+$finder = PhpCsFixer\Finder::create()
4
+ ->exclude('vendor')
5
+ ->exclude('tests/resources')
6
+ ->in(__DIR__);
7
8
+return (new PhpCsFixer\Config())
9
+ ->setUsingCache(false)
10
+ ->setRules(array(
11
+ '@PhpCsFixer' => true,
12
+ ))
13
+ ->setFinder($finder);
CHANGELOG.md
@@ -1,6 +1,6 @@
# CHANGELOG
-## 4.1.1 - 2021/02/05
+## 4.1.0 - 2021/02/05
- issue #12 - Use array short notation
## 4.0.1 - 2021/02/04
0 commit comments