Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[11.x] Fix some doc blocks #51043

Merged
merged 1 commit into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Illuminate/Console/Concerns/ConfiguresPrompts.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/Illuminate/Mail/Transport/SesTransport.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Support/MultipleInstanceManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/View/InvokableComponentVariable.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public function __invoke()
/**
* Resolve the variable as a string.
*
* @return mixed
* @return string
*/
public function __toString()
{
Expand Down