Skip to content

Commit 23e542f

Browse files
💄 Lint
1 parent a513f65 commit 23e542f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

SymfonyCustom/Sniffs/Commenting/DocCommentForbiddenTagsSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class DocCommentForbiddenTagsSniff implements Sniff
2828
public function register()
2929
{
3030
return [
31-
T_DOC_COMMENT_TAG
31+
T_DOC_COMMENT_TAG,
3232
];
3333
}
3434

SymfonyCustom/Sniffs/Commenting/DocCommentGroupSameTypeSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class DocCommentGroupSameTypeSniff implements Sniff
5656
public function register()
5757
{
5858
return [
59-
T_DOC_COMMENT_OPEN_TAG
59+
T_DOC_COMMENT_OPEN_TAG,
6060
];
6161
}
6262

SymfonyCustom/Sniffs/Formatting/BlankLineBeforeReturnSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class BlankLineBeforeReturnSniff implements Sniff
2121
public function register()
2222
{
2323
return [
24-
T_RETURN
24+
T_RETURN,
2525
];
2626
}
2727

SymfonyCustom/Sniffs/WhiteSpace/DocCommentTagSpacingSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class DocCommentTagSpacingSniff implements Sniff
5656
public function register()
5757
{
5858
return [
59-
T_DOC_COMMENT_TAG
59+
T_DOC_COMMENT_TAG,
6060
];
6161
}
6262

SymfonyCustom/Sniffs/WhiteSpace/EmptyLinesSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class EmptyLinesSniff implements Sniff
1818
public function register()
1919
{
2020
return [
21-
T_WHITESPACE
21+
T_WHITESPACE,
2222
];
2323
}
2424

0 commit comments

Comments
 (0)