Skip to content

Commit

Permalink
Fix PHPCS issue
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbachhuber committed Sep 19, 2017
1 parent eae1c46 commit 23005e3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion php/utils.php
Original file line number Diff line number Diff line change
Expand Up @@ -1201,7 +1201,9 @@ function check_proc_available( $context = null, $return = false ) {
* @return string
*/
function past_tense_verb( $verb ) {
static $irregular = array( 'reset' => 'reset' );
static $irregular = array(
'reset' => 'reset',
);
if ( isset( $irregular[ $verb ] ) ) {
return $irregular[ $verb ];
}
Expand Down

0 comments on commit 23005e3

Please sign in to comment.