Skip to content

Commit 5720104

Browse files
author
github-actions
committed
bump to v3.73.1
1 parent 90b52b3 commit 5720104

File tree

347 files changed

+925
-925
lines changed

Some content is hidden

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

347 files changed

+925
-925
lines changed

Diff for: 404.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
34+
<strong>Persian Successor (v3.73.1)</strong> edition
3535
</h1>
3636
</div>
3737
</div>

Diff for: doc/config.html

+2-2
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</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.73.0/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.73.1/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

Diff for: doc/cookbook_fixers.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/custom_rules.html

+5-5
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</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.73.0/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.73.1/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.73.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.73.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.73.0/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.73.1/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.73.1/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.73.1/src/Fixer/DeprecatedFixerInterface.php">PhpCsFixer\Fixer\DeprecatedFixerInterface</a>: to deprecate a fixer.</p></li>
8484
</ul>
8585
</section>
8686

Diff for: doc/installation.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/DoctrineAnnotation.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PER-CS.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PER-CS1.0.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PER-CS1.0Risky.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PER-CS2.0.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PER-CS2.0Risky.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PER-CSRisky.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PER.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PERRisky.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHP54Migration.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHP56MigrationRisky.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHP70Migration.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHP70MigrationRisky.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHP71Migration.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHP71MigrationRisky.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHP73Migration.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHP74Migration.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHP74MigrationRisky.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHP80Migration.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHP80MigrationRisky.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHP81Migration.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHP82Migration.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHP82MigrationRisky.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHP83Migration.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHP84Migration.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHPUnit100MigrationRisky.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHPUnit30MigrationRisky.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHPUnit32MigrationRisky.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHPUnit35MigrationRisky.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHPUnit43MigrationRisky.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHPUnit48MigrationRisky.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHPUnit50MigrationRisky.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHPUnit52MigrationRisky.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHPUnit54MigrationRisky.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHPUnit55MigrationRisky.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

Diff for: doc/ruleSets/PHPUnit56MigrationRisky.html

+1-1
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>Persian Successor (v3.73.0)</strong> edition
30+
<strong>Persian Successor (v3.73.1)</strong> edition
3131
</h1>
3232
</div>
3333
</div>

0 commit comments

Comments
 (0)