I've been looking through Zend Framework's source code and noticed that most (if not all) comparisons are done with the operands in the reverse order I would expect:
if ((false !== $request) { ... } instead of:
if (($request !== false) { ... } What is the reason for this convention?