Skip to content

Commit 361db1e

Browse files
Merge branch '2.7' into 2.8
* 2.7: [DI] minor docblock fixes
2 parents ba539ca + ca3c0da commit 361db1e

38 files changed

+12
-175
lines changed

Compiler/AnalyzeServiceReferencesPass.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ public function setRepeatedPass(RepeatedPass $repeatedPass)
5151

5252
/**
5353
* Processes a ContainerBuilder object to populate the service reference graph.
54-
*
55-
* @param ContainerBuilder $container
5654
*/
5755
public function process(ContainerBuilder $container)
5856
{

Compiler/CheckCircularReferencesPass.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ class CheckCircularReferencesPass implements CompilerPassInterface
3131

3232
/**
3333
* Checks the ContainerBuilder object for circular references.
34-
*
35-
* @param ContainerBuilder $container The ContainerBuilder instances
3634
*/
3735
public function process(ContainerBuilder $container)
3836
{

Compiler/CheckDefinitionValidityPass.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ class CheckDefinitionValidityPass implements CompilerPassInterface
3434
/**
3535
* Processes the ContainerBuilder to validate the Definition.
3636
*
37-
* @param ContainerBuilder $container
38-
*
3937
* @throws RuntimeException When the Definition is invalid
4038
*/
4139
public function process(ContainerBuilder $container)

Compiler/CheckReferenceValidityPass.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ class CheckReferenceValidityPass implements CompilerPassInterface
3939

4040
/**
4141
* Processes the ContainerBuilder to validate References.
42-
*
43-
* @param ContainerBuilder $container
4442
*/
4543
public function process(ContainerBuilder $container)
4644
{
@@ -112,9 +110,6 @@ private function validateReferences(array $arguments)
112110
/**
113111
* Validates the scope of a single Reference.
114112
*
115-
* @param Reference $reference
116-
* @param Definition $definition
117-
*
118113
* @throws ScopeWideningInjectionException when the definition references a service of a narrower scope
119114
* @throws ScopeCrossingInjectionException when the definition references a service of another scope hierarchy
120115
*/

Compiler/Compiler.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,6 @@ public function getLog()
9595

9696
/**
9797
* Run the Compiler and process all Passes.
98-
*
99-
* @param ContainerBuilder $container
10098
*/
10199
public function compile(ContainerBuilder $container)
102100
{

Compiler/CompilerPassInterface.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ interface CompilerPassInterface
2222
{
2323
/**
2424
* You can modify the container here before it is dumped to PHP code.
25-
*
26-
* @param ContainerBuilder $container
2725
*/
2826
public function process(ContainerBuilder $container);
2927
}

Compiler/InlineServiceDefinitionsPass.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ public function setRepeatedPass(RepeatedPass $repeatedPass)
3939

4040
/**
4141
* Processes the ContainerBuilder for inline service definitions.
42-
*
43-
* @param ContainerBuilder $container
4442
*/
4543
public function process(ContainerBuilder $container)
4644
{

Compiler/PassConfig.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -162,11 +162,6 @@ public function getMergePass()
162162
return $this->mergePass;
163163
}
164164

165-
/**
166-
* Sets the Merge Pass.
167-
*
168-
* @param CompilerPassInterface $pass The merge pass
169-
*/
170165
public function setMergePass(CompilerPassInterface $pass)
171166
{
172167
$this->mergePass = $pass;

Compiler/RemoveAbstractDefinitionsPass.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ class RemoveAbstractDefinitionsPass implements CompilerPassInterface
2020
{
2121
/**
2222
* Removes abstract definitions from the ContainerBuilder.
23-
*
24-
* @param ContainerBuilder $container
2523
*/
2624
public function process(ContainerBuilder $container)
2725
{

Compiler/RemovePrivateAliasesPass.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ class RemovePrivateAliasesPass implements CompilerPassInterface
2424
{
2525
/**
2626
* Removes private aliases from the ContainerBuilder.
27-
*
28-
* @param ContainerBuilder $container
2927
*/
3028
public function process(ContainerBuilder $container)
3129
{

0 commit comments

Comments
 (0)