Skip to content

Commit

Permalink
Utils::toAscii() should be static
Browse files Browse the repository at this point in the history
  • Loading branch information
rhukster committed Oct 21, 2024
1 parent bbfc3b5 commit e0ff168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/src/Grav/Common/Utils.php
Original file line number Diff line number Diff line change
Expand Up @@ -1888,7 +1888,7 @@ public static function processMarkdown($string, $block = true, $page = null)
return $string;
}

public function toAscii(String $string): String
public static function toAscii(String $string): String
{
return strtr(utf8_decode($string),
utf8_decode(
Expand Down

0 comments on commit e0ff168

Please sign in to comment.