Skip to content

Commit 9ee1ca6

Browse files
author
github-actions
committed
bump to v3.64.0
1 parent 06c948a commit 9ee1ca6

File tree

344 files changed

+986
-929
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

344 files changed

+986
-929
lines changed

404.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<div class="clearfix">
3232
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
3333
<h1 class="title_header">
34-
<strong>7th Gear (v3.63.2)</strong> edition
34+
<strong>Space Sets (v3.64.0)</strong> edition
3535
</h1>
3636
</div>
3737
</div>

doc/config.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<div class="clearfix">
2828
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
2929
<h1 class="title_header">
30-
<strong>7th Gear (v3.63.2)</strong> edition
30+
<strong>Space Sets (v3.64.0)</strong> edition
3131
</h1>
3232
</div>
3333
</div>
@@ -60,7 +60,7 @@ <h2>No config<a class="headerlink" href="#no-config" title="Permalink to this he
6060
</div>
6161
<p>It is also possible to provide command line options to customize rules, yet instead of using them,
6262
it’s recommended to save the project configuration in a <code class="docutils literal notranslate"><span class="pre">.php-cs-fixer.dist.php</span></code> file in the root directory of your project.
63-
The file must return an instance of <a class="reference external" href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/v3.63.2/src/ConfigInterface.php">PhpCsFixer\ConfigInterface</a>
63+
The file must return an instance of <a class="reference external" href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/v3.64.0/src/ConfigInterface.php">PhpCsFixer\ConfigInterface</a>
6464
which lets you configure the rules, the files and directories that
6565
need to be analyzed. You may also create <code class="docutils literal notranslate"><span class="pre">.php-cs-fixer.php</span></code> file, which is
6666
the local configuration that will be used instead of the project configuration. It

doc/cookbook_fixers.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<div class="clearfix">
2828
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
2929
<h1 class="title_header">
30-
<strong>7th Gear (v3.63.2)</strong> edition
30+
<strong>Space Sets (v3.64.0)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

doc/custom_rules.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<div class="clearfix">
2828
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
2929
<h1 class="title_header">
30-
<strong>7th Gear (v3.63.2)</strong> edition
30+
<strong>Space Sets (v3.64.0)</strong> edition
3131
</h1>
3232
</div>
3333
</div>
@@ -55,7 +55,7 @@ <h1>Creating custom rules<a class="headerlink" href="#creating-custom-rules" tit
5555
<p>If you need to enforce some specific code style rules, you can implement your
5656
own fixers.</p>
5757
<p>For each rule you want to add, create a class that implements
58-
<a class="reference external" href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/v3.63.2/src/Fixer/FixerInterface.php">PhpCsFixer\Fixer\FixerInterface</a>.
58+
<a class="reference external" href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/v3.64.0/src/Fixer/FixerInterface.php">PhpCsFixer\Fixer\FixerInterface</a>.
5959
Note that there is a specific constraint
6060
regarding custom rules names: they must match the pattern
6161
<code class="docutils literal notranslate"><span class="pre">/^[A-Z][a-zA-Z0-9]*\/[a-z][a-z0-9_]*$/</span></code>.</p>
@@ -78,9 +78,9 @@ <h1>Creating custom rules<a class="headerlink" href="#creating-custom-rules" tit
7878
</div>
7979
<p>There are several interfaces that your fixers can also implement if needed:</p>
8080
<ul class="simple">
81-
<li><p><a class="reference external" href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/v3.63.2/src/Fixer/WhitespacesAwareFixerInterface.php">PhpCsFixer\Fixer\WhitespacesAwareFixerInterface</a>: for fixers that need to know the configured indentation and line endings;</p></li>
82-
<li><p><a class="reference external" href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/v3.63.2/src/Fixer/ConfigurableFixerInterface.php">PhpCsFixer\Fixer\ConfigurableFixerInterface</a>: to create a configurable fixer;</p></li>
83-
<li><p><a class="reference external" href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/v3.63.2/src/Fixer/DeprecatedFixerInterface.php">PhpCsFixer\Fixer\DeprecatedFixerInterface</a>: to deprecate a fixer.</p></li>
81+
<li><p><a class="reference external" href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/v3.64.0/src/Fixer/WhitespacesAwareFixerInterface.php">PhpCsFixer\Fixer\WhitespacesAwareFixerInterface</a>: for fixers that need to know the configured indentation and line endings;</p></li>
82+
<li><p><a class="reference external" href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/v3.64.0/src/Fixer/ConfigurableFixerInterface.php">PhpCsFixer\Fixer\ConfigurableFixerInterface</a>: to create a configurable fixer;</p></li>
83+
<li><p><a class="reference external" href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/v3.64.0/src/Fixer/DeprecatedFixerInterface.php">PhpCsFixer\Fixer\DeprecatedFixerInterface</a>: to deprecate a fixer.</p></li>
8484
</ul>
8585
</section>
8686

doc/installation.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<div class="clearfix">
2828
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
2929
<h1 class="title_header">
30-
<strong>7th Gear (v3.63.2)</strong> edition
30+
<strong>Space Sets (v3.64.0)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

doc/ruleSets/DoctrineAnnotation.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<div class="clearfix">
2828
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
2929
<h1 class="title_header">
30-
<strong>7th Gear (v3.63.2)</strong> edition
30+
<strong>Space Sets (v3.64.0)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

doc/ruleSets/PER-CS.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<div class="clearfix">
2828
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
2929
<h1 class="title_header">
30-
<strong>7th Gear (v3.63.2)</strong> edition
30+
<strong>Space Sets (v3.64.0)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

doc/ruleSets/PER-CS1.0.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<div class="clearfix">
2828
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
2929
<h1 class="title_header">
30-
<strong>7th Gear (v3.63.2)</strong> edition
30+
<strong>Space Sets (v3.64.0)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

doc/ruleSets/PER-CS1.0Risky.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<div class="clearfix">
2828
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
2929
<h1 class="title_header">
30-
<strong>7th Gear (v3.63.2)</strong> edition
30+
<strong>Space Sets (v3.64.0)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

doc/ruleSets/PER-CS2.0.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<div class="clearfix">
2828
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
2929
<h1 class="title_header">
30-
<strong>7th Gear (v3.63.2)</strong> edition
30+
<strong>Space Sets (v3.64.0)</strong> edition
3131
</h1>
3232
</div>
3333
</div>
@@ -58,6 +58,7 @@ <h2>Rules<a class="headerlink" href="#rules" title="Permalink to this heading">
5858
<ul>
5959
<li><p><a class="reference internal" href="PER-CS1.0.html"><span class="doc">&#64;PER-CS1.0</span></a></p></li>
6060
<li><p><a class="reference internal" href="../rules/whitespace/array_indentation.html"><span class="doc">array_indentation</span></a></p></li>
61+
<li><p><a class="reference internal" href="../rules/array_notation/array_syntax.html"><span class="doc">array_syntax</span></a></p></li>
6162
<li><p><a class="reference internal" href="../rules/cast_notation/cast_spaces.html"><span class="doc">cast_spaces</span></a></p></li>
6263
<li><p><a class="reference internal" href="../rules/operator/concat_space.html"><span class="doc">concat_space</span></a> with config:</p>
6364
<p><code class="docutils literal notranslate"><span class="pre">['spacing'</span> <span class="pre">=&gt;</span> <span class="pre">'one']</span></code></p>
@@ -70,8 +71,11 @@ <h2>Rules<a class="headerlink" href="#rules" title="Permalink to this heading">
7071
<p><code class="docutils literal notranslate"><span class="pre">['anonymous_class'</span> <span class="pre">=&gt;</span> <span class="pre">false]</span></code></p>
7172
</li>
7273
<li><p><a class="reference internal" href="../rules/basic/single_line_empty_body.html"><span class="doc">single_line_empty_body</span></a></p></li>
74+
<li><p><a class="reference internal" href="../rules/language_construct/single_space_around_construct.html"><span class="doc">single_space_around_construct</span></a> with config:</p>
75+
<p><code class="docutils literal notranslate"><span class="pre">['constructs_followed_by_a_single_space'</span> <span class="pre">=&gt;</span> <span class="pre">['abstract',</span> <span class="pre">'as',</span> <span class="pre">'case',</span> <span class="pre">'catch',</span> <span class="pre">'class',</span> <span class="pre">'const',</span> <span class="pre">'const_import',</span> <span class="pre">'do',</span> <span class="pre">'else',</span> <span class="pre">'elseif',</span> <span class="pre">'enum',</span> <span class="pre">'final',</span> <span class="pre">'finally',</span> <span class="pre">'for',</span> <span class="pre">'foreach',</span> <span class="pre">'function',</span> <span class="pre">'function_import',</span> <span class="pre">'if',</span> <span class="pre">'insteadof',</span> <span class="pre">'interface',</span> <span class="pre">'match',</span> <span class="pre">'named_argument',</span> <span class="pre">'namespace',</span> <span class="pre">'new',</span> <span class="pre">'private',</span> <span class="pre">'protected',</span> <span class="pre">'public',</span> <span class="pre">'readonly',</span> <span class="pre">'static',</span> <span class="pre">'switch',</span> <span class="pre">'trait',</span> <span class="pre">'try',</span> <span class="pre">'type_colon',</span> <span class="pre">'use',</span> <span class="pre">'use_lambda',</span> <span class="pre">'while'],</span> <span class="pre">'constructs_preceded_by_a_single_space'</span> <span class="pre">=&gt;</span> <span class="pre">['as',</span> <span class="pre">'else',</span> <span class="pre">'elseif',</span> <span class="pre">'use_lambda']]</span></code></p>
76+
</li>
7377
<li><p><a class="reference internal" href="../rules/control_structure/trailing_comma_in_multiline.html"><span class="doc">trailing_comma_in_multiline</span></a> with config:</p>
74-
<p><code class="docutils literal notranslate"><span class="pre">['after_heredoc'</span> <span class="pre">=&gt;</span> <span class="pre">true,</span> <span class="pre">'elements'</span> <span class="pre">=&gt;</span> <span class="pre">['arguments',</span> <span class="pre">'arrays',</span> <span class="pre">'match',</span> <span class="pre">'parameters']]</span></code></p>
78+
<p><code class="docutils literal notranslate"><span class="pre">['after_heredoc'</span> <span class="pre">=&gt;</span> <span class="pre">true,</span> <span class="pre">'elements'</span> <span class="pre">=&gt;</span> <span class="pre">['arguments',</span> <span class="pre">'array_destructuring',</span> <span class="pre">'arrays',</span> <span class="pre">'match',</span> <span class="pre">'parameters']]</span></code></p>
7579
</li>
7680
</ul>
7781
</section>

0 commit comments

Comments
 (0)