Skip to content

Commit 5bdf2f0

Browse files
minor symfony#52389 DX: PHP CS Fixer - keep Annotation,NamedArgumentConstructor,Target annotations as single group (keradus)
This PR was squashed before being merged into the 6.4 branch. Discussion ---------- DX: PHP CS Fixer - keep Annotation,NamedArgumentConstructor,Target annotations as single group | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | no | New feature? | no <!-- please update src/**/CHANGELOG.md files --> | Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Issues | Fix CS <!-- prefix each issue number with "Fix #", no need to create an issue if none exists, explain below instead --> | License | MIT it's already there for majority of files, except those few Commits ------- bd764f5 DX: PHP CS Fixer - keep Annotation,NamedArgumentConstructor,Target annotations as single group
2 parents 382564d + bd764f5 commit 5bdf2f0

File tree

5 files changed

+1
-6
lines changed

5 files changed

+1
-6
lines changed

src/Symfony/Component/Console/Command/SignalableCommandInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function getSubscribedSignals(): array;
2727
* The method will be called when the application is signaled.
2828
*
2929
* @param int|false $previousExitCode
30-
30+
*
3131
* @return int|false The exit code to return or false to continue the normal execution
3232
*/
3333
public function handleSignal(int $signal, /* int|false $previousExitCode = 0 */);

src/Symfony/Component/Validator/Constraints/GroupSequence.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
* $validator->validate($address, null, "Address")
4646
*
4747
* @Annotation
48-
*
4948
* @Target({"CLASS", "ANNOTATION"})
5049
*
5150
* @author Bernhard Schussek <bschussek@gmail.com>

src/Symfony/Component/Validator/Constraints/GroupSequenceProvider.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@
1818
* Attribute to define a group sequence provider.
1919
*
2020
* @Annotation
21-
*
2221
* @NamedArgumentConstructor
23-
*
2422
* @Target({"CLASS", "ANNOTATION"})
2523
*
2624
* @author Bernhard Schussek <bschussek@gmail.com>

src/Symfony/Component/Validator/Constraints/PasswordStrength.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
/**
1818
* @Annotation
19-
*
2019
* @Target({"PROPERTY", "METHOD", "ANNOTATION"})
2120
*
2221
* @author Florent Morselli <florent.morselli@spomky-labs.com>

src/Symfony/Component/Validator/Constraints/When.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
/**
2020
* @Annotation
21-
*
2221
* @Target({"CLASS", "PROPERTY", "METHOD", "ANNOTATION"})
2322
*/
2423
#[\Attribute(\Attribute::TARGET_CLASS | \Attribute::TARGET_PROPERTY | \Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)]

0 commit comments

Comments
 (0)