-
Notifications
You must be signed in to change notification settings - Fork 553
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enhancement: Enable
trailing_comma_in_multiline
fixer (#647)
* Enhancement: Enable and configure trailing_comma_in_multiline fixer * Fix: Run 'make coding-standards'
- Loading branch information
1 parent
4ac417b
commit c093fb5
Showing
44 changed files
with
278 additions
and
272 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
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
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 |
---|---|---|
|
@@ -36,5 +36,5 @@ | |
<?php | ||
// Print the common footer. | ||
site_footer([ | ||
'elephpants' => true | ||
'elephpants' => true, | ||
]); |
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
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
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
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
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 |
---|---|---|
|
@@ -50,7 +50,7 @@ function manual_notes($notes):void { | |
'&redirect=' . $_SERVER['BASE_HREF']; | ||
$addnotesnippet = make_link( | ||
$addnotelink, | ||
"+<small>add a note</small>" | ||
"+<small>add a note</small>", | ||
); | ||
|
||
$num_notes = count($notes); | ||
|
@@ -165,21 +165,21 @@ VOTEDIV; | |
'https://main.php.net/manage/user-notes.php?action=edit+' . $note->id, | ||
'<img src="/images/[email protected]" height="12" width="12" alt="edit note">', | ||
'admin', | ||
'scrollbars=yes,width=650,height=400' | ||
'scrollbars=yes,width=650,height=400', | ||
) . "\n " . | ||
|
||
make_popup_link( | ||
'https://main.php.net/manage/user-notes.php?action=reject+' . $note->id, | ||
'<img src="/images/[email protected]" height="12" width="12" alt="reject note">', | ||
'admin', | ||
'scrollbars=no,width=300,height=200' | ||
'scrollbars=no,width=300,height=200', | ||
) . "\n " . | ||
|
||
make_popup_link( | ||
'https://main.php.net/manage/user-notes.php?action=delete+' . $note->id, | ||
'<img src="/images/[email protected]" height="12" width="12" alt="delete note">', | ||
'admin', | ||
'scrollbars=no,width=300,height=200' | ||
'scrollbars=no,width=300,height=200', | ||
) . "\n </span>"; | ||
|
||
} else { | ||
|
@@ -387,7 +387,7 @@ function manual_footer(): void { | |
manual_notes($USERNOTES); | ||
site_footer([ | ||
'related_menu' => $__RELATED['toc'], | ||
'related_menu_deprecated' => $__RELATED['toc_deprecated'] | ||
'related_menu_deprecated' => $__RELATED['toc_deprecated'], | ||
]); | ||
} | ||
|
||
|
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,8 +22,8 @@ $MIRRORS = [ | |
MIRROR_SPECIAL, | ||
true, | ||
"en", | ||
MIRROR_OK | ||
] | ||
MIRROR_OK, | ||
], | ||
]; | ||
|
||
/** | ||
|
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.