It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
Loading history...
53
$this->life = new Same();
54
$this->status = NULL;
55
$this->control = $control;
56
$this->account = $GLOBALS['user'];
57
$this->result = array();
58
}
59
60
/**
61
* Record results from one of the checks in a control pass
It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
Adding explicit visibility (
private
,protected
, orpublic
) is generally recommend to communicate to other developers how, and from where this method is intended to be used.