diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-07-14 16:43:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-14 16:43:09 +0200 |
commit | dca246946288e0167b700d82229626ccc18138ab (patch) | |
tree | 4f719bcb1cf641c1b7cfeea038df4f886a40208b /lib | |
parent | 6f167f0dd1d8f4832820e0b3b6b69d96aec08df9 (diff) | |
parent | 3bdfb380fcdd2a057ea8347d05311acf2963d79c (diff) | |
download | nextcloud-server-dca246946288e0167b700d82229626ccc18138ab.tar.gz nextcloud-server-dca246946288e0167b700d82229626ccc18138ab.zip |
Merge pull request #21833 from nextcloud/docfix/noid/irequest_getHeader
Fix PHPDoc of IRequest::getHeader
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/AppFramework/Http/Request.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/AppFramework/Http/Request.php b/lib/private/AppFramework/Http/Request.php index 6428f7116b0..d0ecdbea6c7 100644 --- a/lib/private/AppFramework/Http/Request.php +++ b/lib/private/AppFramework/Http/Request.php @@ -308,7 +308,7 @@ class Request implements \ArrayAccess, \Countable, IRequest { /** * Returns the value for a specific http header. * - * This method returns null if the header did not exist. + * This method returns an empty string if the header did not exist. * * @param string $name * @return string |