1
0
mirror of https://github.com/danielstjules/Stringy.git synced 2025-08-12 08:14:06 +02:00

Fix trim not being static

This commit is contained in:
Daniel St. Jules
2013-07-26 22:43:14 -04:00
parent cfeadbfacc
commit 3e78d2b75d

View File

@@ -395,7 +395,7 @@ class StaticStringy
*
* @return string Trimmed $str
*/
public function trim($str)
public static function trim($str)
{
return trim($str);
}