Skip to content

Commit

Permalink
* documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
till committed Jul 13, 2011
1 parent 8b3f4e5 commit b8dcfdf
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/Pyrus/Developer/PackageFile/Commands/PEAR2Skeleton.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class PEAR2Skeleton
{
/**
* @var array $info
* @see \Pyrus\Developer\PackageFile\Commands::parsePackageName()
*/
protected $info;

Expand All @@ -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;

Expand Down Expand Up @@ -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;
Expand All @@ -115,6 +125,9 @@ public function getReleaseFiles()
return $this->releaseFiles;
}

/**
* @return string
*/
public function getStub()
{
return $this->stubFile;
Expand Down

0 comments on commit b8dcfdf

Please sign in to comment.