for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Class: WflTextSanitizer
*
* Module: WF-Links
* Version: v1.0.3
* Release Date: 21 June 2005
* Developer: John N
* Team: WF-Projects
* Licence: GNU
*/
class WflTextSanitizer extends MyTextSanitizer
You can fix this by adding a namespace to your class:
namespace YourVendor; class YourClass { }
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.
{
* @param $text
* @return string
public function htmlSpecialCharsStrip($text)
return $this->htmlSpecialChars($this->stripSlashesGPC($text));
}
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.