Skip to content
This repository has been archived by the owner on May 1, 2019. It is now read-only.

Commit

Permalink
added correct type comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Rieger committed Feb 24, 2015
1 parent 3a1b424 commit b9fde45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/ZfModule/src/ZfModule/Service/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public function currentUserModules()
return false;
}

if (null === $this->moduleMapper->findByUrl($repository->html_url)) {
if (false === $this->moduleMapper->findByUrl($repository->html_url)) {
return false;
}

Expand Down

0 comments on commit b9fde45

Please sign in to comment.