Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Fix singular phpdoc #56828

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

Merged
merged 1 commit into from
May 21, 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
Original file line number Diff line number Diff line change
Expand Up @@ -880,7 +880,7 @@ public function getAlias(string $id): Alias
/**
* Registers a service definition.
*
* This methods allows for simple registration of service definition
* This method allows for simple registration of service definition
* with a fluid interface.
*/
public function register(string $id, ?string $class = null): Definition
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Form/FormRegistryInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ interface FormRegistryInterface
/**
* Returns a form type by name.
*
* This methods registers the type extensions from the form extensions.
* This method registers the type extensions from the form extensions.
*
* @throws Exception\InvalidArgumentException if the type cannot be retrieved from any extension
*/
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/HttpFoundation/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,7 @@ public function getMaxAge(): ?int
/**
* Sets the number of seconds after which the response should no longer be considered fresh.
*
* This methods sets the Cache-Control max-age directive.
* This method sets the Cache-Control max-age directive.
*
* @return $this
*
Expand Down Expand Up @@ -825,7 +825,7 @@ public function setStaleWhileRevalidate(int $value): static
/**
* Sets the number of seconds after which the response should no longer be considered fresh by shared caches.
*
* This methods sets the Cache-Control s-maxage directive.
* This method sets the Cache-Control s-maxage directive.
*
* @return $this
*
Expand Down
Loading