Example #1
0
 public function testLower()
 {
     $this->eq(s::lower('ABC'), 'abc');
     $this->eq(s::lower('abc'), 'abc');
     $this->eq(s::lower(':;"'), ':;"');
     $this->eq(s::lower('AbC'), 'abc');
     $this->eq(s::lower(''), '');
 }
Example #2
0
 public function lower()
 {
     return new self(s::lower($this->value));
 }