Skip to content

Commit

Permalink
Merge pull request #619 from piotrantosik/patch-1
Browse files Browse the repository at this point in the history
Use identity instead equality
  • Loading branch information
lsmith77 committed Oct 27, 2015
2 parents 7b688ff + e632ee4 commit a3834d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Imagine/Filter/FilterConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function __construct(array $filters = array())
*/
public function get($filter)
{
if (false == array_key_exists($filter, $this->filters)) {
if (false === array_key_exists($filter, $this->filters)) {
throw new NonExistingFilterException(sprintf('Could not find configuration for a filter: %s', $filter));
}

Expand Down

0 comments on commit a3834d6

Please sign in to comment.