예제 #1
0
 /**
  * Checks if the variable passed in is not empty & is a string type.
  * 
  * @since  1.0.0
  *
  * @param  string  $value
  * @return bool             Returns true if string & not empty
  */
 function wpdevsclub_is_string($value)
 {
     return Str::is_string($value);
 }