Tribe__Validator__Base::trim( string $value )
Trims a string.
Contents
Differently from the trim method it will not use the second argument.
Parameters
- $value
-
(string) (Required)
Return
(string)
Source
File: src/Tribe/Validator/Base.php
public function trim( $value ) {
return is_string( $value ) ? trim( $value ) : $value;
}