getCompileDir() public méthode

Returns the current compile dir.
public getCompileDir ( ) : string
Résultat string Absolute path to compile dir.
Exemple #1
0
 /**
  * @dataProvider dataProvider
  */
 public function testSetGetCompileDir(Smarty $smarty)
 {
     $this->assertSame(__DIR__ . '/Templates/Compile', $smarty->getCompileDir());
     $smarty->setCompileDir('/tmp/new-compile');
     $this->assertSame('/tmp/new-compile', $smarty->getCompileDir());
 }