diff --git a/src/Illuminate/Console/Concerns/ConfiguresPrompts.php b/src/Illuminate/Console/Concerns/ConfiguresPrompts.php index 2f6a540894fc..e52afee7a5f4 100644 --- a/src/Illuminate/Console/Concerns/ConfiguresPrompts.php +++ b/src/Illuminate/Console/Concerns/ConfiguresPrompts.php @@ -167,7 +167,7 @@ protected function validatePrompt($value, $rules) /** * Get the validator instance that should be used to validate prompts. * - * @param string $value + * @param mixed $field * @param mixed $value * @param mixed $rules * @param array $messages diff --git a/src/Illuminate/Mail/Transport/SesTransport.php b/src/Illuminate/Mail/Transport/SesTransport.php index c0f715329371..b33a987ea622 100644 --- a/src/Illuminate/Mail/Transport/SesTransport.php +++ b/src/Illuminate/Mail/Transport/SesTransport.php @@ -94,9 +94,9 @@ protected function doSend(SentMessage $message): void } /** - * Extract the SES list managenent options, if applicable. + * Extract the SES list management options, if applicable. * - * @param \Illuminate\Mail\SentMessage $message + * @param \Symfony\Component\Mailer\SentMessage $message * @return array|null */ protected function listManagementOptions(SentMessage $message) diff --git a/src/Illuminate/Support/MultipleInstanceManager.php b/src/Illuminate/Support/MultipleInstanceManager.php index 4251bbd64437..de403fda4a33 100644 --- a/src/Illuminate/Support/MultipleInstanceManager.php +++ b/src/Illuminate/Support/MultipleInstanceManager.php @@ -64,7 +64,7 @@ abstract public function setDefaultInstance($name); abstract public function getInstanceConfig($name); /** - * Get an instance instance by name. + * Get an instance by name. * * @param string|null $name * @return mixed diff --git a/src/Illuminate/View/InvokableComponentVariable.php b/src/Illuminate/View/InvokableComponentVariable.php index 63d46ce23b66..d1ea11768d8c 100644 --- a/src/Illuminate/View/InvokableComponentVariable.php +++ b/src/Illuminate/View/InvokableComponentVariable.php @@ -88,7 +88,7 @@ public function __invoke() /** * Resolve the variable as a string. * - * @return mixed + * @return string */ public function __toString() {