FileWriter: implement getPath()

refs #7060
This commit is contained in:
Alexander Klimov 2014-09-03 12:09:38 +02:00
parent 6aeab59ead
commit 1e06c20dcb
1 changed files with 8 additions and 0 deletions

View File

@ -103,4 +103,12 @@ class FileWriter extends LogWriter
$file->fwrite($text);
$file->fflush();
}
/**
* @return string
*/
public function getPath()
{
return $this->path;
}
}