|
@@ -20,12 +20,12 @@ |
|
|
block discarded – undo |
|
20
|
20
|
* @param array $serviceProviders An array of service providers, in the format specified in thecodingmachine/service-provider-registry: https://github.com/thecodingmachine/service-provider-registry#how-does-it-work |
|
21
|
21
|
* @param bool $useDiscovery |
|
22
|
22
|
*/ |
|
23
|
|
- public function __construct(array $serviceProviders = [], $useDiscovery = true) |
|
|
23
|
+ public function __construct(array $serviceProviders = [ ], $useDiscovery = true) |
|
24
|
24
|
{ |
|
25
|
25
|
$this->serviceProviders = $serviceProviders; |
|
26
|
26
|
$this->useDiscovery = $useDiscovery; |
|
27
|
27
|
$this->id = self::$count; |
|
28
|
|
- $this->name = $this->getName() . $this->id; |
|
|
28
|
+ $this->name = $this->getName().$this->id; |
|
29
|
29
|
|
|
30
|
30
|
self::$count++; |
|
31
|
31
|
} |
Please login to merge, or discard this patch.