File tree Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,20 @@ CHANGELOG for PHP CS Fixer
3
3
4
4
This file contains changelogs for stable releases only.
5
5
6
+ Changelog for v2.14.0
7
+ ---------------------
8
+
9
+ * bug #4220 NativeFunctionInvocationFixer - namespaced strict to remove backslash (kubawerlos)
10
+ * feature #3881 Add PhpdocVarAnnotationCorrectOrderFixer (kubawerlos)
11
+ * feature #3915 Add HeredocIndentationFixer (gharlan)
12
+ * feature #4002 NoSuperfluousPhpdocTagsFixer - Allow ` mixed ` in superfluous PHPDoc by configuration (MortalFlesh)
13
+ * feature #4030 Add get_required_files and user_error aliases (ntzm)
14
+ * feature #4043 NativeFunctionInvocationFixer - add option to remove redundant backslashes (kubawerlos)
15
+ * feature #4102 Add NoUnsetCastFixer (SpacePossum)
16
+ * minor #4025 Add phpdoc_types_order rule to Symfony's ruleset (carusogabriel)
17
+ * minor #4213 [ 7.3] PHP7.3 integration tests (SpacePossum)
18
+ * minor #4233 Add official support for PHP 7.3 (keradus)
19
+
6
20
Changelog for v2.13.3
7
21
---------------------
8
22
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.13.3 /php-cs-fixer.phar -O php-cs-fixer
49
+ $ wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.14.0 /php-cs-fixer.phar -O php-cs-fixer
50
50
51
51
or with curl:
52
52
@@ -1827,7 +1827,7 @@ Config file
1827
1827
1828
1828
Instead of using command line options to customize the rule, you can save the
1829
1829
project configuration in a ``.php_cs.dist `` file in the root directory of your project.
1830
- The file must return an instance of `PhpCsFixer\\ ConfigInterface <https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v2.13.3 /src/ConfigInterface.php >`_
1830
+ The file must return an instance of `PhpCsFixer\\ ConfigInterface <https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/v2.14.0 /src/ConfigInterface.php >`_
1831
1831
which lets you configure the rules, the files and directories that
1832
1832
need to be analyzed. You may also create ``.php_cs `` file, which is
1833
1833
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.14.0-DEV ' ;
39
- const VERSION_CODENAME = '' ;
38
+ const VERSION = '2.14.0 ' ;
39
+ const VERSION_CODENAME = 'Sunrise ' ;
40
40
41
41
/**
42
42
* @var ToolInfo
You can’t perform that action at this time.
0 commit comments