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
Ocramius committed Dec 16, 2014
2 parents 3490a26 + 80d18d3 commit 9eb9d28
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -1409,6 +1409,6 @@ public static function encodeAuthHeader($user, $password, $type = self::AUTH_BAS

}

return null;
return;
}
}
2 changes: 1 addition & 1 deletion src/Cookies.php
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ protected function _flattenCookiesArray($ptr, $retAs = self::COOKIE_OBJECT)
}
}

return null;
return;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Header/ContentType.php
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ public function getCharset()
if (isset($this->parameters['charset'])) {
return $this->parameters['charset'];
}
return null;
return;
}

/**
Expand Down

0 comments on commit 9eb9d28

Please sign in to comment.