Skip to content

Commit 59a3335

Browse files
committed
Merge branch '2.7' into 2.8
* 2.7: [Console] use ANSI escape sequences in ProgressBar overwrite method [HttpKernel] Fix wrong number of arguments in call of ExceptionListener::logException() [DependencyInjection] Remove YAML check in CrossCheckTest [Process] Consistently use getProcess() in tests [DependencyInjection] fix phpDoc
2 parents 5914cf1 + fe01cb7 commit 59a3335

22 files changed

+16
-82
lines changed

Alias.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ class Alias
1717
private $public;
1818

1919
/**
20-
* Constructor.
21-
*
2220
* @param string $id Alias identifier
2321
* @param bool $public If this alias is public
2422
*/

Compiler/AnalyzeServiceReferencesPass.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ class AnalyzeServiceReferencesPass implements RepeatablePassInterface
3434
private $onlyConstructorArguments;
3535

3636
/**
37-
* Constructor.
38-
*
3937
* @param bool $onlyConstructorArguments Sets this Service Reference pass to ignore method calls
4038
*/
4139
public function __construct($onlyConstructorArguments = false)

Compiler/Compiler.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ class Compiler
2525
private $loggingFormatter;
2626
private $serviceReferenceGraph;
2727

28-
/**
29-
* Constructor.
30-
*/
3128
public function __construct()
3229
{
3330
$this->passConfig = new PassConfig();

Compiler/PassConfig.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@ class PassConfig
3535
private $optimizationPasses;
3636
private $removingPasses;
3737

38-
/**
39-
* Constructor.
40-
*/
4138
public function __construct()
4239
{
4340
$this->mergePass = new MergeExtensionConfigurationPass();

Compiler/RepeatedPass.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ class RepeatedPass implements CompilerPassInterface
3232
private $passes;
3333

3434
/**
35-
* Constructor.
36-
*
3735
* @param RepeatablePassInterface[] $passes An array of RepeatablePassInterface objects
3836
*
3937
* @throws InvalidArgumentException when the passes don't implement RepeatablePassInterface

Compiler/ServiceReferenceGraphEdge.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ class ServiceReferenceGraphEdge
2525
private $value;
2626

2727
/**
28-
* Constructor.
29-
*
3028
* @param ServiceReferenceGraphNode $sourceNode
3129
* @param ServiceReferenceGraphNode $destNode
3230
* @param string $value

Compiler/ServiceReferenceGraphNode.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ class ServiceReferenceGraphNode
2929
private $value;
3030

3131
/**
32-
* Constructor.
33-
*
3432
* @param string $id The node identifier
3533
* @param mixed $value The node value
3634
*/

Container.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,6 @@ class Container implements IntrospectableContainerInterface, ResettableContainer
7878
private $underscoreMap = array('_' => '', '.' => '_', '\\' => '_');
7979

8080
/**
81-
* Constructor.
82-
*
8381
* @param ParameterBagInterface $parameterBag A ParameterBagInterface instance
8482
*/
8583
public function __construct(ParameterBagInterface $parameterBag = null)

ContainerAware.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@ abstract class ContainerAware implements ContainerAwareInterface
2626
protected $container;
2727

2828
/**
29-
* Sets the container.
30-
*
31-
* @param ContainerInterface|null $container A ContainerInterface instance or null
29+
* {@inheritdoc}
3230
*/
3331
public function setContainer(ContainerInterface $container = null)
3432
{

Definition.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@ class Definition
4747
protected $arguments;
4848

4949
/**
50-
* Constructor.
51-
*
5250
* @param string|null $class The service class
5351
* @param array $arguments An array of arguments to pass to the service constructor
5452
*/

0 commit comments

Comments
 (0)