Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
- use `null ===` instead of `is_null` (consistency)
  • Loading branch information
weierophinney authored and dima committed Nov 27, 2014
1 parent a1ad0e4 commit d3ba924
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion library/Zend/View/Helper/FlashMessenger.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,8 @@ protected function renderMessages($namespace = PluginFlashMessenger::NAMESPACE_D
}
$classes = array($classes);
}
if (is_null($autoEscape)) {

if (null === $autoEscape) {
$autoEscape = $this->getAutoEscape();
}

Expand Down

0 comments on commit d3ba924

Please sign in to comment.