From f6a8345762a2ccdaef896d7ea2eff9d4aeb330a1 Mon Sep 17 00:00:00 2001 From: Raymond Nambaale Date: Fri, 22 Mar 2024 21:34:30 +0300 Subject: [PATCH] [11.x] Adds thrown exception to doc blocks (#50715) --- src/Illuminate/Log/Context/Repository.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Illuminate/Log/Context/Repository.php b/src/Illuminate/Log/Context/Repository.php index a19f5a0e1ec2..47ca1b916735 100644 --- a/src/Illuminate/Log/Context/Repository.php +++ b/src/Illuminate/Log/Context/Repository.php @@ -241,6 +241,8 @@ public function addHiddenIf($key, $value) * @param string $key * @param mixed ...$values * @return $this + * + * @throws \RuntimeException */ public function push($key, ...$values) { @@ -262,6 +264,8 @@ public function push($key, ...$values) * @param string $key * @param mixed ...$values * @return $this + * + * @throws \RuntimeException */ public function pushHidden($key, ...$values) { @@ -393,6 +397,8 @@ public function dehydrate() * * @param ?array $context * @return $this + * + * @throws \RuntimeException */ public function hydrate($context) {