1
0
Fork 0

Fix phpdocs

pull/893/head
Adel 2012-07-10 19:09:56 +00:00
parent eb283b34e4
commit d3b9f5c33f
1 changed files with 5 additions and 2 deletions

View File

@ -40,8 +40,8 @@ class JsonFile
/** /**
* Initializes json file reader/parser. * Initializes json file reader/parser.
* *
* @param string $lockFile path to a lockfile * @param string $path path to a lockfile
* @param RemoteFilesystem $rfs required for loading http/https json files * @param RemoteFilesystem $rfs required for loading http/https json files
*/ */
public function __construct($path, RemoteFilesystem $rfs = null) public function __construct($path, RemoteFilesystem $rfs = null)
{ {
@ -53,6 +53,9 @@ class JsonFile
$this->rfs = $rfs; $this->rfs = $rfs;
} }
/**
* @return string
*/
public function getPath() public function getPath()
{ {
return $this->path; return $this->path;