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();