Standards: Rename App methods

- Rename App->max_processes_reached to App->isMaxProcessesReached
- Rename App->maxload_reached to App->isMaxLoadReached
This commit is contained in:
Hypolite Petovan 2018-06-30 14:07:01 -04:00
parent 73b4e0552d
commit d487c399dd
3 changed files with 6 additions and 6 deletions

View file

@ -972,7 +972,7 @@ class App
*
* @return bool Is the limit reached?
*/
public function max_processes_reached()
public function isMaxProcessesReached()
{
// Deactivated, needs more investigating if this check really makes sense
return false;
@ -1052,7 +1052,7 @@ class App
*
* @return bool Is the load reached?
*/
public function maxload_reached()
public function isMaxLoadReached()
{
if ($this->is_backend()) {
$process = 'backend';