ecometer

Do not unnecessarily assign values to variables

(Development)
#54

Avoid declaring and using variables when it is not needed, because each allocation takes up RAM.

Instead of:

$clients = $crm->fetchAllClients();
return $clients;

write:

return $crm->fetchAllClients();
This best practice should only be applied if it is coherent with your project's specifications.
Under CC-By-NX-SA license