1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-02-25 02:22:57 +01:00

Cleaning up HeaderCollection docblock

This commit is contained in:
Michael Dowling 2013-05-29 09:54:31 -07:00
parent 0617fe3ca3
commit 1212c1d80d

View File

@ -46,6 +46,16 @@ class HeaderCollection implements \IteratorAggregate, \Countable, \ArrayAccess,
return $this;
}
/**
* Get an array of header objects
*
* @return array
*/
public function getAll()
{
return $this->headers;
}
/**
* Alias of offsetGet
*/
@ -95,14 +105,4 @@ class HeaderCollection implements \IteratorAggregate, \Countable, \ArrayAccess,
return $result;
}
/**
* Get an array of header objects
*
* @return array
*/
public function getAll()
{
return $this->headers;
}
}