File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,14 @@ CHANGELOG for PHP CS Fixer
3
3
4
4
This file contains changelogs for stable releases only.
5
5
6
+ Changelog for v2.15.7
7
+ ---------------------
8
+
9
+ * bug #4915 Fix handling property PHPDocs with unsupported type (julienfalque)
10
+ * minor #4916 Fix AppVeyor build (julienfalque)
11
+ * minor #4917 CircleCI - Bump xcode to 11.4 (GrahamCampbell)
12
+ * minor #4918 DX: do not fix ".phpt" files by default (kubawerlos)
13
+
6
14
Changelog for v2.15.6
7
15
---------------------
8
16
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ or with specified version:
46
46
47
47
.. code-block :: bash
48
48
49
- $ wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.15.6 /php-cs-fixer.phar -O php-cs-fixer
49
+ $ wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.15.7 /php-cs-fixer.phar -O php-cs-fixer
50
50
51
51
or with curl:
52
52
@@ -1922,7 +1922,7 @@ Config file
1922
1922
1923
1923
Instead of using command line options to customize the rule, you can save the
1924
1924
project configuration in a ``.php_cs.dist `` file in the root directory of your project.
1925
- The file must return an instance of `PhpCsFixer\\ ConfigInterface <https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v2.15.6 /src/ConfigInterface.php >`_
1925
+ The file must return an instance of `PhpCsFixer\\ ConfigInterface <https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v2.15.7 /src/ConfigInterface.php >`_
1926
1926
which lets you configure the rules, the files and directories that
1927
1927
need to be analyzed. You may also create ``.php_cs `` file, which is
1928
1928
the local configuration that will be used instead of the project configuration. It
Original file line number Diff line number Diff line change 35
35
*/
36
36
final class Application extends BaseApplication
37
37
{
38
- const VERSION = '2.15.7-DEV ' ;
38
+ const VERSION = '2.15.7 ' ;
39
39
const VERSION_CODENAME = 'Europe Round ' ;
40
40
41
41
/**
You can’t perform that action at this time.
0 commit comments