Skip to content

Commit

Permalink
[11.x] Adds thrown exception to doc blocks (#50715)
Browse files Browse the repository at this point in the history
  • Loading branch information
rnambaale authored Mar 22, 2024
1 parent 62a101f commit f6a8345
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Illuminate/Log/Context/Repository.php
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,8 @@ public function addHiddenIf($key, $value)
* @param string $key
* @param mixed ...$values
* @return $this
*
* @throws \RuntimeException
*/
public function push($key, ...$values)
{
Expand All @@ -262,6 +264,8 @@ public function push($key, ...$values)
* @param string $key
* @param mixed ...$values
* @return $this
*
* @throws \RuntimeException
*/
public function pushHidden($key, ...$values)
{
Expand Down Expand Up @@ -393,6 +397,8 @@ public function dehydrate()
*
* @param ?array $context
* @return $this
*
* @throws \RuntimeException
*/
public function hydrate($context)
{
Expand Down

0 comments on commit f6a8345

Please sign in to comment.