From b8dcfdf05802176d3b99f30569829837657551df Mon Sep 17 00:00:00 2001 From: till Date: Wed, 13 Jul 2011 23:27:50 +0200 Subject: [PATCH] * documentation --- .../PackageFile/Commands/PEAR2Skeleton.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/Pyrus/Developer/PackageFile/Commands/PEAR2Skeleton.php b/src/Pyrus/Developer/PackageFile/Commands/PEAR2Skeleton.php index aa19e92..3abd034 100644 --- a/src/Pyrus/Developer/PackageFile/Commands/PEAR2Skeleton.php +++ b/src/Pyrus/Developer/PackageFile/Commands/PEAR2Skeleton.php @@ -15,6 +15,7 @@ class PEAR2Skeleton { /** * @var array $info + * @see \Pyrus\Developer\PackageFile\Commands::parsePackageName() */ protected $info; @@ -40,6 +41,9 @@ class PEAR2Skeleton * @var string $templatePath Path to templates for the above. * @see self::__construct() * @see self::generate() + * @see self::$extraSetupFile + * @see self::$packageXmlSetupFile + * @see self::$stubFile */ protected $templatePath; @@ -97,11 +101,17 @@ public function generate() $this->createStub(); } + /** + * @return string + */ public function getExtraSetup() { return $this->extraSetupFile; } + /** + * @return string + */ public function getPackageXmlSetup() { return $this->packageXmlSetupFile; @@ -115,6 +125,9 @@ public function getReleaseFiles() return $this->releaseFiles; } + /** + * @return string + */ public function getStub() { return $this->stubFile;