-
Notifications
You must be signed in to change notification settings - Fork 703
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Symfony 7 where able
Co-authored-by: Alexander Schranz <[email protected]>
- Loading branch information
1 parent
3fafc1e
commit fadaba5
Showing
55 changed files
with
728 additions
and
477 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,11 +22,11 @@ | |
* | ||
* @Annotation | ||
* @NamedArgumentConstructor | ||
* @Target("METHOD") | ||
* @Target({"CLASS", "METHOD"}) | ||
* | ||
* @author Ener-Getick <[email protected]> | ||
*/ | ||
#[\Attribute(\Attribute::IS_REPEATABLE | \Attribute::TARGET_METHOD)] | ||
#[\Attribute(\Attribute::IS_REPEATABLE | \Attribute::TARGET_CLASS | \Attribute::TARGET_METHOD)] | ||
class FileParam extends AbstractParam | ||
{ | ||
/** @var bool */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,12 +18,12 @@ | |
* | ||
* @Annotation | ||
* @NamedArgumentConstructor | ||
* @Target("METHOD") | ||
* @Target({"CLASS", "METHOD"}) | ||
* | ||
* @author Jordi Boggiano <[email protected]> | ||
* @author Boris Guéry <[email protected]> | ||
*/ | ||
#[\Attribute(\Attribute::IS_REPEATABLE | \Attribute::TARGET_METHOD)] | ||
#[\Attribute(\Attribute::IS_REPEATABLE | \Attribute::TARGET_CLASS | \Attribute::TARGET_METHOD)] | ||
class RequestParam extends AbstractScalarParam | ||
{ | ||
/** @var bool */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.