mirror of
https://github.com/friendica/friendica
synced 2025-05-12 10:24:10 +02:00
Standards: Rename App methods
- Rename App->max_processes_reached to App->isMaxProcessesReached - Rename App->maxload_reached to App->isMaxLoadReached
This commit is contained in:
parent
73b4e0552d
commit
d487c399dd
3 changed files with 6 additions and 6 deletions
|
@ -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';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue