Qual: Removed phpcs warnings

This commit is contained in:
Laurent Destailleur
2011-11-23 18:28:14 +01:00
parent 71e0f825b2
commit 6fb994d296
21 changed files with 235 additions and 57 deletions

View File

@@ -40,7 +40,7 @@ class box_commandes extends ModeleBoxes {
var $info_box_contents = array();
/**
* \brief Constructeur de la classe
* Constructor
*/
function box_commandes()
{
@@ -51,8 +51,10 @@ class box_commandes extends ModeleBoxes {
}
/**
* \brief Charge les donnees en memoire pour affichage ulterieur
* \param $max Nombre maximum d'enregistrements a charger
* Load data for box to show them later
*
* @param int $max Maximum number of records to load
* @return void
*/
function loadBox($max=5)
{
@@ -134,6 +136,13 @@ class box_commandes extends ModeleBoxes {
}
}
/**
* Method to show box
*
* @param array $head Array with properties of box title
* @param array $contents Array with properties of box lines
* @return void
*/
function showBox($head = null, $contents = null)
{
parent::showBox($this->info_box_head, $this->info_box_contents);