Skip to content

Commit 9b385f6

Browse files
Merge branch '2.3' into 2.7
* 2.3: [DI] Clean a phpdoc
2 parents 5850235 + 2094462 commit 9b385f6

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

ContainerAware.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ abstract class ContainerAware implements ContainerAwareInterface
2424
protected $container;
2525

2626
/**
27-
* Sets the Container associated with this Controller.
27+
* Sets the container.
2828
*
29-
* @param ContainerInterface $container A ContainerInterface instance
29+
* @param ContainerInterface|null $container A ContainerInterface instance or null
3030
*/
3131
public function setContainer(ContainerInterface $container = null)
3232
{

ContainerAwareInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
interface ContainerAwareInterface
2020
{
2121
/**
22-
* Sets the Container.
22+
* Sets the container.
2323
*
2424
* @param ContainerInterface|null $container A ContainerInterface instance or null
2525
*/

ContainerAwareTrait.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ trait ContainerAwareTrait
2424
protected $container;
2525

2626
/**
27-
* Sets the Container associated with this Controller.
27+
* Sets the container.
2828
*
29-
* @param ContainerInterface $container A ContainerInterface instance
29+
* @param ContainerInterface|null $container A ContainerInterface instance or null
3030
*/
3131
public function setContainer(ContainerInterface $container = null)
3232
{

0 commit comments

Comments
 (0)