Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge branch 'cs/zendframework/zendframework#7014-empty-return-instea…
Browse files Browse the repository at this point in the history
…d-of-null-return' into develop

Close zendframework/zendframework#7014
  • Loading branch information
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/AbstractContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ public function findOneBy($property, $value)
}
}

return null;
return;
}

/**
Expand Down Expand Up @@ -502,7 +502,7 @@ public function getChildren()
return $this->pages[$hash];
}

return null;
return;
}

// Countable interface:
Expand Down
2 changes: 1 addition & 1 deletion src/Page/AbstractPage.php
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,7 @@ public function get($property)
return $this->properties[$property];
}

return null;
return;
}

// Magic overloads:
Expand Down

0 comments on commit 90c9a60

Please sign in to comment.