Skip to content

Commit

Permalink
bump to v3.59.2
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jun 16, 2024
1 parent 2794872 commit 86279d8
Show file tree
Hide file tree
Showing 342 changed files with 914 additions and 914 deletions.
2 changes: 1 addition & 1 deletion 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions doc/config.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down Expand Up @@ -60,7 +60,7 @@ <h2>No config<a class="headerlink" href="#no-config" title="Permalink to this he
</div>
<p>It is also possible to provide command line options to customize rules, yet instead of using them,
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.
The file must return an instance of <a class="reference external" href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/v3.59.1/src/ConfigInterface.php">PhpCsFixer\ConfigInterface</a>
The file must return an instance of <a class="reference external" href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/v3.59.2/src/ConfigInterface.php">PhpCsFixer\ConfigInterface</a>
which lets you configure the rules, the files and directories that
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
the local configuration that will be used instead of the project configuration. It
Expand Down
2 changes: 1 addition & 1 deletion doc/cookbook_fixers.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
10 changes: 5 additions & 5 deletions doc/custom_rules.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down Expand Up @@ -55,7 +55,7 @@ <h1>Creating custom rules<a class="headerlink" href="#creating-custom-rules" tit
<p>If you need to enforce some specific code style rules, you can implement your
own fixers.</p>
<p>For each rule you want to add, create a class that implements
<a class="reference external" href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/v3.59.1/src/Fixer/FixerInterface.php">PhpCsFixer\Fixer\FixerInterface</a>.
<a class="reference external" href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/v3.59.2/src/Fixer/FixerInterface.php">PhpCsFixer\Fixer\FixerInterface</a>.
Note that there is a specific constraint
regarding custom rules names: they must match the pattern
<code class="docutils literal notranslate"><span class="pre">/^[A-Z][a-zA-Z0-9]*\/[a-z][a-z0-9_]*$/</span></code>.</p>
Expand All @@ -78,9 +78,9 @@ <h1>Creating custom rules<a class="headerlink" href="#creating-custom-rules" tit
</div>
<p>There are several interfaces that your fixers can also implement if needed:</p>
<ul class="simple">
<li><p><a class="reference external" href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/v3.59.1/src/Fixer/WhitespacesAwareFixerInterface.php">PhpCsFixer\Fixer\WhitespacesAwareFixerInterface</a>: for fixers that need to know the configured indentation and line endings;</p></li>
<li><p><a class="reference external" href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/v3.59.1/src/Fixer/ConfigurableFixerInterface.php">PhpCsFixer\Fixer\ConfigurableFixerInterface</a>: to create a configurable fixer;</p></li>
<li><p><a class="reference external" href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/v3.59.1/src/Fixer/DeprecatedFixerInterface.php">PhpCsFixer\Fixer\DeprecatedFixerInterface</a>: to deprecate a fixer.</p></li>
<li><p><a class="reference external" href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/v3.59.2/src/Fixer/WhitespacesAwareFixerInterface.php">PhpCsFixer\Fixer\WhitespacesAwareFixerInterface</a>: for fixers that need to know the configured indentation and line endings;</p></li>
<li><p><a class="reference external" href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/v3.59.2/src/Fixer/ConfigurableFixerInterface.php">PhpCsFixer\Fixer\ConfigurableFixerInterface</a>: to create a configurable fixer;</p></li>
<li><p><a class="reference external" href="https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/v3.59.2/src/Fixer/DeprecatedFixerInterface.php">PhpCsFixer\Fixer\DeprecatedFixerInterface</a>: to deprecate a fixer.</p></li>
</ul>
</section>

Expand Down
2 changes: 1 addition & 1 deletion doc/installation.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/DoctrineAnnotation.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PER-CS.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PER-CS1.0.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PER-CS1.0Risky.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PER-CS2.0.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PER-CS2.0Risky.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PER-CSRisky.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PER.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PERRisky.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHP54Migration.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHP56MigrationRisky.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHP70Migration.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHP70MigrationRisky.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHP71Migration.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHP71MigrationRisky.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHP73Migration.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHP74Migration.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHP74MigrationRisky.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHP80Migration.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHP80MigrationRisky.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHP81Migration.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHP82Migration.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHP83Migration.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHP84Migration.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHPUnit100MigrationRisky.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHPUnit30MigrationRisky.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHPUnit32MigrationRisky.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHPUnit35MigrationRisky.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHPUnit43MigrationRisky.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHPUnit48MigrationRisky.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHPUnit50MigrationRisky.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHPUnit52MigrationRisky.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHPUnit54MigrationRisky.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHPUnit55MigrationRisky.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHPUnit56MigrationRisky.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion doc/ruleSets/PHPUnit57MigrationRisky.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="clearfix">
<div class="logo_header"><a href="/">PHP Coding Standards Fixer</a></div>
<h1 class="title_header">
<strong>7th Gear (v3.59.1)</strong> edition
<strong>7th Gear (v3.59.2)</strong> edition
</h1>
</div>
</div>
Expand Down
Loading

0 comments on commit 86279d8

Please sign in to comment.