[PR #411] [MERGED] chore(deps-dev): bump squizlabs/php_codesniffer from 3.8.1 to 3.9.0 #1076

Closed
opened 2026-03-15 15:51:31 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/flyimg/flyimg/pull/411
Author: @dependabot[bot]
Created: 2/19/2024
Status: Merged
Merged: 2/19/2024
Merged by: @sadok-f

Base: mainHead: dependabot/composer/squizlabs/php_codesniffer-3.9.0


📝 Commits (1)

  • 5cec186 chore(deps-dev): bump squizlabs/php_codesniffer from 3.8.1 to 3.9.0

📊 Changes

1 file changed (+5 additions, -5 deletions)

View changed files

📝 composer.lock (+5 -5)

📄 Description

Bumps squizlabs/php_codesniffer from 3.8.1 to 3.9.0.

Release notes

Sourced from squizlabs/php_codesniffer's releases.

3.9.0 - 2024-02-16

Added

  • Tokenizer support for PHP 8.3 typed class constants. #321
    • Additionally, the following sniffs have been updated to support typed class constants:
      • Generic.NamingConventions.UpperCaseConstantName #332
      • Generic.PHP.LowerCaseConstant #330
      • Generic.PHP.LowerCaseType #331
    • Thanks to Juliette Reinders Folmer for the patches
  • Tokenizer support for PHP 8.3 readonly anonymous classes. #309
    • Additionally, the following sniffs have been updated to support readonly anonymous classes:
      • PSR12.Classes.ClassInstantiation #324
    • Thanks to Juliette Reinders Folmer for the patches
  • New PHP_CodeSniffer\Sniffs\DeprecatedSniff interface to allow for marking a sniff as deprecated. #281
    • If a ruleset uses deprecated sniffs, deprecation notices will be shown to the end-user before the scan starts. When running in -q (quiet) mode, the deprecation notices will be hidden.
    • Deprecated sniffs will still run and using them will have no impact on the exit code for a scan.
    • In ruleset "explain"-mode (-e) an asterix * will show next to deprecated sniffs.
    • Sniff maintainers are advised to read through the PR description for full details on how to use this feature for their own (deprecated) sniffs.
    • Thanks to Juliette Reinders Folmer for the patch
  • New Generic.CodeAnalysis.RequireExplicitBooleanOperatorPrecedence sniff. #197
    • Forbid mixing different binary boolean operators within a single expression without making precedence clear using parentheses
    • Thanks to Tim Düsterhus for the contribution
  • Squiz.PHP.EmbeddedPhp : the sniff will now also examine the formatting of embedded PHP statements using short open echo tags. #27
    • Includes a new ShortOpenEchoNoSemicolon errorcode to allow for selectively ignoring missing semicolons in single line embedded PHP snippets within short open echo tags.
    • The other error codes are the same and do not distinguish between what type of open tag was used.
    • Thanks to Juliette Reinders Folmer for the patch
  • Documentation for the following sniffs:
    • Generic.WhiteSpace.IncrementDecrementSpacing
    • PSR12.ControlStructures.ControlStructureSpacing
    • PSR12.Files.ImportStatement
    • PSR12.Functions.ReturnTypeDeclaration
    • PSR12.Properties.ConstantVisibility
    • Thanks to Denis Žoljom and Rodrigo Primo for the patches

Changed

  • The Performance report can now also be used for a phpcbf run. #308
  • Sniff tests which extend the PHPCS native AbstractSniffUnitTest class will now show a (non-build-breaking) warning when test case files contain fixable errors/warnings, but there is no corresponding .fixed file available in the test suite to verify the fixes against. #336
    • The warning is only displayed on PHPUnit 7.3.0 and higher.
    • The warning will be elevated to a test failure in PHPCS 4.0.
    • Thanks to Dan Wallis for the patch
  • The following sniffs have received performance related improvements:
  • Various housekeeping, including improvements to the tests and documentation

Deprecated

  • Support for scanning JavaScript and CSS files. See #2448.
    • This also means that all sniffs which are only aimed at JavaScript or CSS files are now deprecated.

... (truncated)

Changelog

Sourced from squizlabs/php_codesniffer's changelog.

[3.9.0] - 2024-02-16

Added

  • Tokenizer support for PHP 8.3 typed class constants. #321
    • Additionally, the following sniffs have been updated to support typed class constants:
      • Generic.NamingConventions.UpperCaseConstantName #332
      • Generic.PHP.LowerCaseConstant #330
      • Generic.PHP.LowerCaseType #331
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patches
  • Tokenizer support for PHP 8.3 readonly anonymous classes. #309
    • Additionally, the following sniffs have been updated to support readonly anonymous classes:
      • PSR12.Classes.ClassInstantiation #324
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patches
  • New PHP_CodeSniffer\Sniffs\DeprecatedSniff interface to allow for marking a sniff as deprecated. #281
    • If a ruleset uses deprecated sniffs, deprecation notices will be shown to the end-user before the scan starts. When running in -q (quiet) mode, the deprecation notices will be hidden.
    • Deprecated sniffs will still run and using them will have no impact on the exit code for a scan.
    • In ruleset "explain"-mode (-e) an asterix * will show next to deprecated sniffs.
    • Sniff maintainers are advised to read through the PR description for full details on how to use this feature for their own (deprecated) sniffs.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch
  • New Generic.CodeAnalysis.RequireExplicitBooleanOperatorPrecedence sniff. #197
    • Forbid mixing different binary boolean operators within a single expression without making precedence clear using parentheses
    • Thanks to [Tim Düsterhus][@​TimWolla] for the contribution
  • Squiz.PHP.EmbeddedPhp : the sniff will now also examine the formatting of embedded PHP statements using short open echo tags. #27
    • Includes a new ShortOpenEchoNoSemicolon errorcode to allow for selectively ignoring missing semicolons in single line embedded PHP snippets within short open echo tags.
    • The other error codes are the same and do not distinguish between what type of open tag was used.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch
  • Documentation for the following sniffs:
    • Generic.WhiteSpace.IncrementDecrementSpacing
    • PSR12.ControlStructures.ControlStructureSpacing
    • PSR12.Files.ImportStatement
    • PSR12.Functions.ReturnTypeDeclaration
    • PSR12.Properties.ConstantVisibility
    • Thanks to [Denis Žoljom][@​dingo-d] and [Rodrigo Primo][@​rodrigoprimo] for the patches

Changed

  • The Performance report can now also be used for a phpcbf run. #308
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch
  • Sniff tests which extend the PHPCS native AbstractSniffUnitTest class will now show a (non-build-breaking) warning when test case files contain fixable errors/warnings, but there is no corresponding .fixed file available in the test suite to verify the fixes against. #336
    • The warning is only displayed on PHPUnit 7.3.0 and higher.
    • The warning will be elevated to a test failure in PHPCS 4.0.
    • Thanks to [Dan Wallis][@​fredden] for the patch
  • The following sniffs have received performance related improvements:
    • Squiz.PHP.EmbeddedPhp
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch
  • Various housekeeping, including improvements to the tests and documentation

Deprecated

  • Support for scanning JavaScript and CSS files. See #2448.

... (truncated)

Commits
  • d63cee4 Merge pull request #341 from PHPCSStandards/feature/changelog-3.9.0
  • 4a9addc Changelog for the 3.9.0 release
  • 4bbc820 Merge pull request #340 from fredden/missing-fixed-file/Squiz.Commenting.Clos...
  • 66e87a1 Avoid adding extra newlines when adding a comment
  • 392b2b5 Add auto-generated ".fixed" file
  • 3e582fe Merge pull request #339 from PHPCSStandards/feature/various-minor-cs-cleanup
  • 814896b Merge pull request #338 from PHPCSStandards/feature/various-docs-tweaks
  • 479b4dc CS: various minor fixes
  • 8e92de6 Changelog: various tweaks
  • 21219d1 README: minor tweak
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/flyimg/flyimg/pull/411 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 2/19/2024 **Status:** ✅ Merged **Merged:** 2/19/2024 **Merged by:** [@sadok-f](https://github.com/sadok-f) **Base:** `main` ← **Head:** `dependabot/composer/squizlabs/php_codesniffer-3.9.0` --- ### 📝 Commits (1) - [`5cec186`](https://github.com/flyimg/flyimg/commit/5cec1861656941e2cf021d1930a69ef41996cd9f) chore(deps-dev): bump squizlabs/php_codesniffer from 3.8.1 to 3.9.0 ### 📊 Changes **1 file changed** (+5 additions, -5 deletions) <details> <summary>View changed files</summary> 📝 `composer.lock` (+5 -5) </details> ### 📄 Description Bumps [squizlabs/php_codesniffer](https://github.com/PHPCSStandards/PHP_CodeSniffer) from 3.8.1 to 3.9.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/releases">squizlabs/php_codesniffer's releases</a>.</em></p> <blockquote> <h2>3.9.0 - 2024-02-16</h2> <h3>Added</h3> <ul> <li>Tokenizer support for PHP 8.3 typed class constants. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/321">#321</a> <ul> <li>Additionally, the following sniffs have been updated to support typed class constants: <ul> <li>Generic.NamingConventions.UpperCaseConstantName <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/332">#332</a></li> <li>Generic.PHP.LowerCaseConstant <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/330">#330</a></li> <li>Generic.PHP.LowerCaseType <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/331">#331</a></li> </ul> </li> <li>Thanks to <a href="https://github.com/jrfnl">Juliette Reinders Folmer</a> for the patches</li> </ul> </li> <li>Tokenizer support for PHP 8.3 readonly anonymous classes. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/309">#309</a> <ul> <li>Additionally, the following sniffs have been updated to support readonly anonymous classes: <ul> <li>PSR12.Classes.ClassInstantiation <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/324">#324</a></li> </ul> </li> <li>Thanks to <a href="https://github.com/jrfnl">Juliette Reinders Folmer</a> for the patches</li> </ul> </li> <li>New <code>PHP_CodeSniffer\Sniffs\DeprecatedSniff</code> interface to allow for marking a sniff as deprecated. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/281">#281</a> <ul> <li>If a ruleset uses deprecated sniffs, deprecation notices will be shown to the end-user before the scan starts. When running in <code>-q</code> (quiet) mode, the deprecation notices will be hidden.</li> <li>Deprecated sniffs will still run and using them will have no impact on the exit code for a scan.</li> <li>In ruleset &quot;explain&quot;-mode (<code>-e</code>) an asterix <code>*</code> will show next to deprecated sniffs.</li> <li>Sniff maintainers are advised to read through the PR description for full details on how to use this feature for their own (deprecated) sniffs.</li> <li>Thanks to <a href="https://github.com/jrfnl">Juliette Reinders Folmer</a> for the patch</li> </ul> </li> <li>New <code>Generic.CodeAnalysis.RequireExplicitBooleanOperatorPrecedence</code> sniff. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/197">#197</a> <ul> <li>Forbid mixing different binary boolean operators within a single expression without making precedence clear using parentheses</li> <li>Thanks to <a href="https://github.com/TimWolla">Tim Düsterhus</a> for the contribution</li> </ul> </li> <li>Squiz.PHP.EmbeddedPhp : the sniff will now also examine the formatting of embedded PHP statements using short open echo tags. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/27">#27</a> <ul> <li>Includes a new <code>ShortOpenEchoNoSemicolon</code> errorcode to allow for selectively ignoring missing semicolons in single line embedded PHP snippets within short open echo tags.</li> <li>The other error codes are the same and do not distinguish between what type of open tag was used.</li> <li>Thanks to <a href="https://github.com/jrfnl">Juliette Reinders Folmer</a> for the patch</li> </ul> </li> <li>Documentation for the following sniffs: <ul> <li>Generic.WhiteSpace.IncrementDecrementSpacing</li> <li>PSR12.ControlStructures.ControlStructureSpacing</li> <li>PSR12.Files.ImportStatement</li> <li>PSR12.Functions.ReturnTypeDeclaration</li> <li>PSR12.Properties.ConstantVisibility</li> <li>Thanks to <a href="https://github.com/dingo-d">Denis Žoljom</a> and <a href="https://github.com/rodrigoprimo">Rodrigo Primo</a> for the patches</li> </ul> </li> </ul> <h3>Changed</h3> <ul> <li>The Performance report can now also be used for a <code>phpcbf</code> run. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/308">#308</a> <ul> <li>Thanks to <a href="https://github.com/jrfnl">Juliette Reinders Folmer</a> for the patch</li> </ul> </li> <li>Sniff tests which extend the PHPCS native <code>AbstractSniffUnitTest</code> class will now show a (non-build-breaking) warning when test case files contain fixable errors/warnings, but there is no corresponding <code>.fixed</code> file available in the test suite to verify the fixes against. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/336">#336</a> <ul> <li>The warning is only displayed on PHPUnit 7.3.0 and higher.</li> <li>The warning will be elevated to a test failure in PHPCS 4.0.</li> <li>Thanks to <a href="https://github.com/fredden">Dan Wallis</a> for the patch</li> </ul> </li> <li>The following sniffs have received performance related improvements: <ul> <li>Squiz.PHP.EmbeddedPhp</li> <li>Thanks to <a href="https://github.com/jrfnl">Juliette Reinders Folmer</a> for the patch</li> </ul> </li> <li>Various housekeeping, including improvements to the tests and documentation <ul> <li>Thanks to <a href="https://github.com/fredden">Dan Wallis</a>, <a href="https://github.com/joachim-n">Joachim Noreiko</a>, <a href="https://github.com/remicollet">Remi Collet</a>, <a href="https://github.com/rodrigoprimo">Rodrigo Primo</a> and <a href="https://github.com/jrfnl">Juliette Reinders Folmer</a> for their contributions</li> </ul> </li> </ul> <h3>Deprecated</h3> <ul> <li>Support for scanning JavaScript and CSS files. See <a href="https://redirect.github.com/squizlabs/PHP_CodeSniffer/issues/2448">#2448</a>. <ul> <li>This also means that all sniffs which are only aimed at JavaScript or CSS files are now deprecated.</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/CHANGELOG.md">squizlabs/php_codesniffer's changelog</a>.</em></p> <blockquote> <h2>[3.9.0] - 2024-02-16</h2> <h3>Added</h3> <ul> <li>Tokenizer support for PHP 8.3 typed class constants. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/321">#321</a> <ul> <li>Additionally, the following sniffs have been updated to support typed class constants: <ul> <li>Generic.NamingConventions.UpperCaseConstantName <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/332">#332</a></li> <li>Generic.PHP.LowerCaseConstant <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/330">#330</a></li> <li>Generic.PHP.LowerCaseType <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/331">#331</a></li> </ul> </li> <li>Thanks to [Juliette Reinders Folmer][<a href="https://github.com/jrfnl"><code>@​jrfnl</code></a>] for the patches</li> </ul> </li> <li>Tokenizer support for PHP 8.3 readonly anonymous classes. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/309">#309</a> <ul> <li>Additionally, the following sniffs have been updated to support readonly anonymous classes: <ul> <li>PSR12.Classes.ClassInstantiation <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/324">#324</a></li> </ul> </li> <li>Thanks to [Juliette Reinders Folmer][<a href="https://github.com/jrfnl"><code>@​jrfnl</code></a>] for the patches</li> </ul> </li> <li>New <code>PHP_CodeSniffer\Sniffs\DeprecatedSniff</code> interface to allow for marking a sniff as deprecated. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/281">#281</a> <ul> <li>If a ruleset uses deprecated sniffs, deprecation notices will be shown to the end-user before the scan starts. When running in <code>-q</code> (quiet) mode, the deprecation notices will be hidden.</li> <li>Deprecated sniffs will still run and using them will have no impact on the exit code for a scan.</li> <li>In ruleset &quot;explain&quot;-mode (<code>-e</code>) an asterix <code>*</code> will show next to deprecated sniffs.</li> <li>Sniff maintainers are advised to read through the PR description for full details on how to use this feature for their own (deprecated) sniffs.</li> <li>Thanks to [Juliette Reinders Folmer][<a href="https://github.com/jrfnl"><code>@​jrfnl</code></a>] for the patch</li> </ul> </li> <li>New <code>Generic.CodeAnalysis.RequireExplicitBooleanOperatorPrecedence</code> sniff. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/197">#197</a> <ul> <li>Forbid mixing different binary boolean operators within a single expression without making precedence clear using parentheses</li> <li>Thanks to [Tim Düsterhus][<a href="https://github.com/TimWolla"><code>@​TimWolla</code></a>] for the contribution</li> </ul> </li> <li>Squiz.PHP.EmbeddedPhp : the sniff will now also examine the formatting of embedded PHP statements using short open echo tags. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/27">#27</a> <ul> <li>Includes a new <code>ShortOpenEchoNoSemicolon</code> errorcode to allow for selectively ignoring missing semicolons in single line embedded PHP snippets within short open echo tags.</li> <li>The other error codes are the same and do not distinguish between what type of open tag was used.</li> <li>Thanks to [Juliette Reinders Folmer][<a href="https://github.com/jrfnl"><code>@​jrfnl</code></a>] for the patch</li> </ul> </li> <li>Documentation for the following sniffs: <ul> <li>Generic.WhiteSpace.IncrementDecrementSpacing</li> <li>PSR12.ControlStructures.ControlStructureSpacing</li> <li>PSR12.Files.ImportStatement</li> <li>PSR12.Functions.ReturnTypeDeclaration</li> <li>PSR12.Properties.ConstantVisibility</li> <li>Thanks to [Denis Žoljom][<a href="https://github.com/dingo-d"><code>@​dingo-d</code></a>] and [Rodrigo Primo][<a href="https://github.com/rodrigoprimo"><code>@​rodrigoprimo</code></a>] for the patches</li> </ul> </li> </ul> <h3>Changed</h3> <ul> <li>The Performance report can now also be used for a <code>phpcbf</code> run. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/308">#308</a> <ul> <li>Thanks to [Juliette Reinders Folmer][<a href="https://github.com/jrfnl"><code>@​jrfnl</code></a>] for the patch</li> </ul> </li> <li>Sniff tests which extend the PHPCS native <code>AbstractSniffUnitTest</code> class will now show a (non-build-breaking) warning when test case files contain fixable errors/warnings, but there is no corresponding <code>.fixed</code> file available in the test suite to verify the fixes against. <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/336">#336</a> <ul> <li>The warning is only displayed on PHPUnit 7.3.0 and higher.</li> <li>The warning will be elevated to a test failure in PHPCS 4.0.</li> <li>Thanks to [Dan Wallis][<a href="https://github.com/fredden"><code>@​fredden</code></a>] for the patch</li> </ul> </li> <li>The following sniffs have received performance related improvements: <ul> <li>Squiz.PHP.EmbeddedPhp</li> <li>Thanks to [Juliette Reinders Folmer][<a href="https://github.com/jrfnl"><code>@​jrfnl</code></a>] for the patch</li> </ul> </li> <li>Various housekeeping, including improvements to the tests and documentation <ul> <li>Thanks to [Dan Wallis][<a href="https://github.com/fredden"><code>@​fredden</code></a>], [Joachim Noreiko][<a href="https://github.com/joachim-n"><code>@​joachim-n</code></a>], [Remi Collet][<a href="https://github.com/remicollet"><code>@​remicollet</code></a>], [Rodrigo Primo][<a href="https://github.com/rodrigoprimo"><code>@​rodrigoprimo</code></a>] and [Juliette Reinders Folmer][<a href="https://github.com/jrfnl"><code>@​jrfnl</code></a>] for their contributions</li> </ul> </li> </ul> <h3>Deprecated</h3> <ul> <li>Support for scanning JavaScript and CSS files. See <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/2448">#2448</a>.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/commit/d63cee4890a8afaf86a22e51ad4d97c91dd4579b"><code>d63cee4</code></a> Merge pull request <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/341">#341</a> from PHPCSStandards/feature/changelog-3.9.0</li> <li><a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/commit/4a9addc9bb0f29d4fc9357e0be126a7265a53d77"><code>4a9addc</code></a> Changelog for the 3.9.0 release</li> <li><a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/commit/4bbc82053ee4e8fb79f3e4c950caaf95ba487586"><code>4bbc820</code></a> Merge pull request <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/340">#340</a> from fredden/missing-fixed-file/Squiz.Commenting.Clos...</li> <li><a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/commit/66e87a1090f290732c93418e4a4db83ccafde0bf"><code>66e87a1</code></a> Avoid adding extra newlines when adding a comment</li> <li><a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/commit/392b2b5f0e2a3a88f18fd619258c9f5fea527875"><code>392b2b5</code></a> Add auto-generated &quot;.fixed&quot; file</li> <li><a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/commit/3e582fefa1ad01461309f28b6121b0ef8d969dfe"><code>3e582fe</code></a> Merge pull request <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/339">#339</a> from PHPCSStandards/feature/various-minor-cs-cleanup</li> <li><a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/commit/814896b5e5adb17e56f60649706f960890016b24"><code>814896b</code></a> Merge pull request <a href="https://redirect.github.com/PHPCSStandards/PHP_CodeSniffer/issues/338">#338</a> from PHPCSStandards/feature/various-docs-tweaks</li> <li><a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/commit/479b4dc593bf07028df528e3d173130f68578929"><code>479b4dc</code></a> CS: various minor fixes</li> <li><a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/commit/8e92de68e896ceb10f0fd592d6997b43756fd382"><code>8e92de6</code></a> Changelog: various tweaks</li> <li><a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/commit/21219d15705314fdce6943509c9a3760bad2060e"><code>21219d1</code></a> README: minor tweak</li> <li>Additional commits viewable in <a href="https://github.com/PHPCSStandards/PHP_CodeSniffer/compare/3.8.1...3.9.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=squizlabs/php_codesniffer&package-manager=composer&previous-version=3.8.1&new-version=3.9.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-15 15:51:31 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/flyimg#1076
No description provided.