-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use PHP CodeSniffer to auto-fix style issues (#89)
* phpcbf auto-fixes round 1 * Manual fixes to phpcbf auto-fixes * More auto-fixes * Manual fix to get phpcbf to stop breaking * Major reduction in phpcs errors * WatchAnalyticsTablePager::reallyDoQuery() must match IndexPager::reallyDoQuery() * Fix type hinting
- Loading branch information
1 parent
3ae1e8d
commit a181f46
Showing
26 changed files
with
823 additions
and
1,562 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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?php | ||
|
||
$magicWords['en'] = array( | ||
'underwatched_categories' => array( | ||
0, // zero means case-insensitive, 1 means case sensitive | ||
'underwatched_categories' | ||
), | ||
'watchers_needed' => array( | ||
0, // zero means case-insensitive, 1 means case sensitive | ||
'watchers_needed' | ||
), | ||
'MAG_NOPAGESCORE' => array( 0, '__NOPAGESCORE__' ), | ||
); | ||
$magicWords['en'] = [ | ||
'underwatched_categories' => [ | ||
0, // zero means case-insensitive, 1 means case sensitive | ||
'underwatched_categories' | ||
], | ||
'watchers_needed' => [ | ||
0, // zero means case-insensitive, 1 means case sensitive | ||
'watchers_needed' | ||
], | ||
'MAG_NOPAGESCORE' => [ 0, '__NOPAGESCORE__' ], | ||
]; |
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.