Remove trailing whitespace in legacy class files

This commit is contained in:
Kijin Sung 2023-01-17 21:07:55 +09:00
parent 8a6039b829
commit c881e73c1d
29 changed files with 481 additions and 483 deletions

View file

@ -14,14 +14,14 @@ class JSONDisplayHandler
$variables = $oModule->getVariables();
$variables['error'] = $oModule->getError();
$variables['message'] = $oModule->getMessage();
self::_convertCompat($variables, Context::getRequestMethod());
return json_encode($variables);
}
/**
* Convert arrays in a format that is compatible with XE.
*
*
* @param array $array
* @param string $compat_type
* @return array
@ -51,10 +51,10 @@ class JSONDisplayHandler
}
}
}
/**
* Check if an array only has numeric keys.
*
*
* @param array $array
* @return bool
*/