NAME
Valiant::Filter::Lower - lower case a string
SYNOPSIS
package
Local::Test::User;
use
Moo;
use
Valiant::Filters;
has
'name'
=> (
is
=>
'ro'
,
required
=>1);
filters
name
=> (
lower
=> 1,
);
my
$user
= Local::Test::User->new(
name
=>
'JOHN'
);
$user
->name;
# 'john'
DESCRIPTION
This is a very simple filter that takes no paramters and just does a 'lc' on the value of the attribute.
SEE ALSO
Valiant, Valiant::Filter, Valiant::Validator::Filter.
AUTHOR
See Valiant
COPYRIGHT & LICENSE
See Valiant