Added single quotes for upgrade guides.

This commit is contained in:
Lesnykh Ilia 2016-11-08 16:51:01 +03:00
parent 570bebdcb3
commit 201603137c
No known key found for this signature in database
GPG Key ID: 80A30E05EADE2B20
2 changed files with 3 additions and 3 deletions

View File

@ -628,7 +628,7 @@ HttpFoundation
After:
```php
$request->query->get('foo')[bar];
$request->query->get('foo')['bar'];
```
Routing
@ -657,4 +657,4 @@ Routing
// url generated in @router service
$router->generate('blog_show', array('slug' => 'my-blog-post'), UrlGeneratorInterface::ABSOLUTE_URL);
```
```

View File

@ -1750,5 +1750,5 @@ UPGRADE FROM 2.x to 3.0
After:
```php
$request->query->get('foo')[bar];
$request->query->get('foo')['bar'];
```