getIndent() public méthode

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