Exemplo n.º 1
0
 /**
  * String to lowercase.
  *
  * @param string $value
  * @return string
  */
 public static function lower($value)
 {
     return StringHelper::lower($value);
 }
Exemplo n.º 2
0
 /**
  * @inheritdoc
  */
 public function sanitize($input)
 {
     return is_string($input) ? \rock\helpers\StringHelper::lower($input) : $input;
 }