mirror of
https://github.com/jupeter/clean-code-php.git
synced 2025-09-28 15:09:00 +02:00
Different function name used in the example.
This commit is contained in:
@@ -287,7 +287,7 @@ function emailClients($clients) {
|
|||||||
```php
|
```php
|
||||||
function emailClients($clients) {
|
function emailClients($clients) {
|
||||||
$activeClients = activeClients($clients);
|
$activeClients = activeClients($clients);
|
||||||
array_walk($activeClients, 'email');
|
array_walk($activeClients, 'activeClients');
|
||||||
}
|
}
|
||||||
|
|
||||||
function activeClients($clients) {
|
function activeClients($clients) {
|
||||||
|
Reference in New Issue
Block a user