Skip to content

Commit

Permalink
Bump since tags
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonge committed May 5, 2016
1 parent fba4449 commit 935fc55
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions libraries/cms/installer/script.php
Expand Up @@ -15,71 +15,71 @@
/**
* Base install script for use by extensions providing helper methods for common behaviours.
*
* @since 3.5
* @since 3.6
*/
class JInstallerScript
{
/**
* The version number of the extension.
*
* @var string
* @since 3.5
* @since 3.6
*/
protected $release;

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

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

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

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

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

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

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

Expand All @@ -89,7 +89,7 @@ class JInstallerScript
* Use at your own risk as if there is a change in functionality people may wish to downgrade.
*
* @var boolean
* @since 3.5
* @since 3.6
*/
protected $allowDowngrades = false;

Expand All @@ -101,7 +101,7 @@ class JInstallerScript
*
* @return boolean True on success
*
* @since 3.5
* @since 3.6
*/
public function preflight($type, $parent)
{
Expand Down Expand Up @@ -155,7 +155,7 @@ public function preflight($type, $parent)
*
* @return array An array of ID's of the extension
*
* @since 3.5
* @since 3.6
*/
public function getInstances($isModule)
{
Expand Down Expand Up @@ -188,7 +188,7 @@ public function getInstances($isModule)
*
* @return string The parameter desired
*
* @since 3.5
* @since 3.6
*/
public function getParam($name, $id = 0)
{
Expand All @@ -214,7 +214,7 @@ public function getParam($name, $id = 0)
*
* @return boolean True on success
*
* @since 3.5
* @since 3.6
*/
public function setParams($param_array = null, $type = 'edit', $id = 0)
{
Expand Down Expand Up @@ -278,7 +278,7 @@ public function setParams($param_array = null, $type = 'edit', $id = 0)
*
* @return array Associated array containing data from the cell
*
* @since 3.5
* @since 3.6
*/
public function getItemArray($element, $table, $column, $identifier)
{
Expand All @@ -301,7 +301,7 @@ public function getItemArray($element, $table, $column, $identifier)
*
* @return void
*
* @since 3.5
* @since 3.6
*/
public function removeFiles()
{
Expand Down Expand Up @@ -333,7 +333,7 @@ public function removeFiles()
*
* @return void
*
* @since 3.5
* @since 3.6
*/
public function moveCliFiles()
{
Expand Down

0 comments on commit 935fc55

Please sign in to comment.