notags calls

implement removeTags function
This commit is contained in:
Adam Magness 2018-11-08 10:14:37 -05:00
parent 991f259ecb
commit a0f65ca7a1
51 changed files with 274 additions and 232 deletions

View file

@ -44,7 +44,7 @@ class Strings
* @param string $string Input string
* @return string Filtered string
*/
public static function removeTags($string) // notags()
public static function removeTags($string)
{
return str_replace(["<", ">"], ['[', ']'], $string);
}