Skip to content

[DependencyInjection] Fixed some param/return annotations in PHPDOC blocks #23881

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
Aug 14, 2017
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/Symfony/Component/DependencyInjection/Container.php
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ public static function underscore($id)
/**
* Fetches a variable from the environment.
*
* @param string The name of the environment variable
* @param string $name The name of the environment variable
*
* @return scalar The value to use for the provided environment variable name
*
Expand Down
4 changes: 4 additions & 0 deletions src/Symfony/Component/DependencyInjection/Definition.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ public function getChanges()
/**
* Sets the tracked changes for the Definition object.
*
* @param array $changes An array of changes for this Definition
*
* @return $this
*/
public function setChanges(array $changes)
Expand Down Expand Up @@ -401,6 +403,8 @@ public function getMethodCalls()
* Sets the definition templates to conditionally apply on the current definition, keyed by parent interface/class.
*
* @param $instanceof ChildDefinition[]
*
* @return $this
*/
public function setInstanceofConditionals(array $instanceof)
{
Expand Down