Skip to content

Commit b52d924

Browse files
committed
improved attribute class description
1 parent efa5084 commit b52d924

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/helpers/MetaFormats/Attributes/FPath.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Attribute;
77

88
/**
9-
* Attribute used to annotate format definition properties.
9+
* Attribute used to annotate format definition properties representing path parameters.
1010
*/
1111
#[Attribute(Attribute::TARGET_PROPERTY)]
1212
class FPath extends FormatParameterAttribute

app/helpers/MetaFormats/Attributes/FPost.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Attribute;
77

88
/**
9-
* Attribute used to annotate format definition properties.
9+
* Attribute used to annotate format definition properties representing post parameters.
1010
*/
1111
#[Attribute(Attribute::TARGET_PROPERTY)]
1212
class FPost extends FormatParameterAttribute

app/helpers/MetaFormats/Attributes/FQuery.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Attribute;
77

88
/**
9-
* Attribute used to annotate format definition properties.
9+
* Attribute used to annotate format definition properties representing query parameters.
1010
*/
1111
#[Attribute(Attribute::TARGET_PROPERTY)]
1212
class FQuery extends FormatParameterAttribute

0 commit comments

Comments
 (0)