Code Style: Replace "AS" with "as"

This commit is contained in:
Michael 2021-10-03 10:34:41 +00:00
parent 96b41fdb67
commit 9961943b73
10 changed files with 39 additions and 39 deletions

View file

@ -45,7 +45,7 @@ class XSocialRelay extends BaseModule
$tagitems = explode(',', $server_tags);
/// @todo Check if it was better to use "strtolower" on the tags
foreach ($tagitems AS $tag) {
foreach ($tagitems as $tag) {
$systemTags[] = trim($tag, '# ');
}