Tribe__Validator__Base::trim( string $value )

Trims a string.

Differently from the trim method it will not use the second argument.


Parameters

$value

(string) (Required)


Top ↑

Return

(string)


Top ↑

Source

File: src/Tribe/Validator/Base.php

	public function trim( $value ) {
		return is_string( $value ) ? trim( $value ) : $value;
	}