Fix linting
This commit is contained in:
parent
5b17a7dbd7
commit
1614145b18
262 changed files with 45324 additions and 42695 deletions
|
|
@ -6,37 +6,36 @@
|
|||
*/
|
||||
class Attaques
|
||||
{
|
||||
var $groupes = array();
|
||||
public $groupes = array();
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
function __construct()
|
||||
{
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
}
|
||||
|
||||
}
|
||||
public function addGroupe($groupe)
|
||||
{
|
||||
$this->groupes[] = $groupe;
|
||||
}
|
||||
|
||||
function addGroupe($groupe)
|
||||
{
|
||||
$this->groupes[] = $groupe;
|
||||
}
|
||||
public function checkAllGroupes()
|
||||
{
|
||||
foreach ($groupes as $key => $groupe) {
|
||||
$this->checkGroupe($key);
|
||||
}
|
||||
}
|
||||
|
||||
function checkAllGroupes()
|
||||
{
|
||||
foreach ($groupes as $key => $groupe)
|
||||
$this->checkGroupe($key);
|
||||
}
|
||||
|
||||
function checkGroupe($id)
|
||||
{
|
||||
if (is_a($this->groupes[$id], "Groupe"))
|
||||
{
|
||||
if ($this->groupes[$id]->)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
$groupes[$id]->
|
||||
}
|
||||
public function checkGroupe($id)
|
||||
{
|
||||
// if (is_a($this->groupes[$id], "Groupe"))
|
||||
// {
|
||||
// if ($this->groupes[$id]->)
|
||||
// {
|
||||
//
|
||||
// }
|
||||
// }
|
||||
// $groupes[$id]->
|
||||
}
|
||||
}
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue