Merges second DI section into first one

This commit is contained in:
Jan Schädlich 2019-05-03 11:45:06 +02:00
parent 446480e2f7
commit 826237aa4b

View File

@ -55,6 +55,19 @@ DependencyInjection
* Removed the `TypedReference::canBeAutoregistered()` and `TypedReference::getRequiringClass()` methods.
* Removed support for auto-discovered extension configuration class which does not implement `ConfigurationInterface`.
* Removed support for non-string default env() parameters
Before:
```yaml
parameters:
env(NAME): 1.5
```
After:
```yaml
parameters:
env(NAME): '1.5'
```
DoctrineBridge
--------------
@ -82,23 +95,6 @@ EventDispatcher
* The signature of the `EventDispatcherInterface::dispatch()` method has been updated to `dispatch($event, string $eventName = null)`
* The `Event` class has been removed, use `Symfony\Contracts\EventDispatcher\Event` instead
DependencyInjection
-------------------
* Removed support for non-string default env() parameters
Before:
```yaml
parameters:
env(NAME): 1.5
```
After:
```yaml
parameters:
env(NAME): '1.5'
```
Filesystem
----------