piotrplenik / clean-code-php

:bathtub: Clean Code concepts adapted for PHP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[WTF] Avoid Mental Mapping

PretorDH opened this issue · comments

Invalid "foreach" loop.

$locations = ['Austin', 'New York', 'San Francisco'];

foreach( $locations as $i=>$location ) {
// $location = $locations[$i];

doStuff();
doSomeOtherStuff();
// ...
// ...
// ...
dispatch($location);

});