setIndent() public method

Set the code indent
public setIndent ( string $indent = null ) : Generator
$indent string
return Generator
Exemplo n.º 1
0
 public function testSetAndGetIndent()
 {
     $c = new Generator('TestClass.php', Generator::CREATE_CLASS);
     $c->setIndent('    ');
     $this->assertEquals('    ', $c->getIndent());
 }