From d3b9f5c33fac28f83e91285ba8771c39361e857b Mon Sep 17 00:00:00 2001 From: Adel Date: Tue, 10 Jul 2012 19:09:56 +0000 Subject: [PATCH] Fix phpdocs --- src/Composer/Json/JsonFile.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/Composer/Json/JsonFile.php b/src/Composer/Json/JsonFile.php index 2e0581d27..58c10e1d8 100755 --- a/src/Composer/Json/JsonFile.php +++ b/src/Composer/Json/JsonFile.php @@ -40,8 +40,8 @@ class JsonFile /** * Initializes json file reader/parser. * - * @param string $lockFile path to a lockfile - * @param RemoteFilesystem $rfs required for loading http/https json files + * @param string $path path to a lockfile + * @param RemoteFilesystem $rfs required for loading http/https json files */ public function __construct($path, RemoteFilesystem $rfs = null) { @@ -53,6 +53,9 @@ class JsonFile $this->rfs = $rfs; } + /** + * @return string + */ public function getPath() { return $this->path;