Skip to content

Commit

Permalink
Doc block fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonge committed Apr 14, 2014
1 parent cee05be commit c945721
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions libraries/cms/helper/extensionscript.php
Expand Up @@ -20,48 +20,50 @@
class JHelperExtensionscript
{
/**
* @var string The version number of the module.
* @since 3.4
* @var string The version number of the module.
* @since 3.4
*/
protected $release;

/**
* @var string The table the parameters are stored in.
* @since 3.4
* @var string The table the parameters are stored in.
* @since 3.4
*/
protected $paramTable;

/**
* @var string The extension name. This should be set in the installer script.
* @since 3.4
* @var string The extension name. This should be set in the installer script.
* @since 3.4
*/
protected $extension;

/**
* @var array A list of files to be deleted.
* @since 3.4
* @var array A list of files to be deleted.
* @since 3.4
*/
protected $deleteFiles = array();

/**
* @var array A list of folders to be deleted.
* @since 3.4
* @var array A list of folders to be deleted.
* @since 3.4
*/
protected $deleteFolders = array();

/**
* @var array A list of cli script files to be copied to the cli directory
* @since 3.4
* @var array A list of cli script files to be copied to the cli directory
* @since 3.4
*/
protected $cliScriptFiles = array();

/**
* @var string Minimum PHP version required to install the extension
* @var string Minimum PHP version required to install the extension
* @since 3.4
*/
protected $minimumPhp;

/**
* @var string Minimum Joomla version required to install the extension
* @var string Minimum Joomla version required to install the extension
* @since 3.4
*/
protected $minimumJoomla;

Expand Down

0 comments on commit c945721

Please sign in to comment.