getIndent() 공개 메소드

Get the code indent
public getIndent ( ) : string
리턴 string
예제 #1
0
 public function testSetAndGetIndent()
 {
     $c = new Generator('TestClass.php', Generator::CREATE_CLASS);
     $c->setIndent('    ');
     $this->assertEquals('    ', $c->getIndent());
 }