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