예제 #1
0
파일: StringTest.php 프로젝트: sysvyz/hurl
 public function testLowerCaseFirst()
 {
     $upperCase = _String::lcfirst();
     $data = 'AGAsg4';
     $this->assertInstanceOf(StringLowerCaseFirst::class, $upperCase);
     $this->assertInstanceOf(AbstractStringNode::class, $upperCase);
     $this->assertEquals('aGAsg4', $upperCase($data));
 }
예제 #2
0
 /**
  * @return AbstractNode
  */
 public function AbstractStringNode()
 {
     return $this->then(_String::lcfirst());
 }