Skip to content

Commit

Permalink
Updates methods comments to enhance Doxygen parsing.
Browse files Browse the repository at this point in the history
  • Loading branch information
JB Lebrun committed Jun 29, 2018
1 parent 1506d9f commit 652194e
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions engine/lib/object/PluginConfig.php.inc
Expand Up @@ -77,7 +77,7 @@ abstract class PluginConfig {
*/
public $vars = null;

/*
/**
* Class constructor.
* @param string $name
* @param Plugin $plugin
Expand All @@ -91,15 +91,15 @@ abstract class PluginConfig {
$this->_libFile = $this->_libFolder.'/'.$this->name.'.php.inc';
}

/*
/**
* Install object.
* @return boolean
*/
public function install() {
return $this->initialise() and $this->save();
}

/*
/**
* Uninstall object.
* @return boolean
*/
Expand Down Expand Up @@ -136,7 +136,7 @@ abstract class PluginConfig {
return true;
}

/*
/**
* Initialise object with default values.
* @return boolean
*/
Expand All @@ -147,7 +147,7 @@ abstract class PluginConfig {
return true;
}

/*
/**
* Load object from file.
* @return boolean
*/
Expand All @@ -174,7 +174,7 @@ abstract class PluginConfig {
return true;
}

/*
/**
* Save object to file.
* @return boolean
*/
Expand All @@ -196,7 +196,7 @@ abstract class PluginConfig {
return false;
}

/*
/**
* Delete object file.
* @return boolean
*/
Expand All @@ -206,7 +206,7 @@ abstract class PluginConfig {
return true;
}

/*
/**
* Reset object into file.
* @return boolean success
*/
Expand All @@ -215,15 +215,15 @@ abstract class PluginConfig {
return $this->save();
}

/*
/**
* Check object items values.
* @return boolean
*/
public function check_data() {
return true;
}

/*
/**
* Load object items values from header.
* @return void
*/
Expand All @@ -248,7 +248,7 @@ abstract class PluginConfig {

/* tool methods */

/*
/**
* Return locale
* @param string $str
* @param mixed $args
Expand Down

0 comments on commit 652194e

Please sign in to comment.