@@ -30,7 +30,7 @@ command:
30
30
$ phpunit -c app/
31
31
32
32
The ``-c `` option tells PHPUnit to look in the ``app/ `` directory for a configuration
33
- file. If you're curious about how the PHPUnit options, check out the ``app/phpunit.xml.dist ``
33
+ file. If you're curious about the PHPUnit options, check out the ``app/phpunit.xml.dist ``
34
34
file.
35
35
36
36
.. tip ::
@@ -287,7 +287,7 @@ document::
287
287
Working with the Test Client
288
288
-----------------------------
289
289
290
- The test Client simulates an HTTP client like a browser and makes requests
290
+ The Test Client simulates an HTTP client like a browser and makes requests
291
291
into your Symfony2 application::
292
292
293
293
$crawler = $client->request('GET', '/hello/Fabien');
@@ -485,9 +485,9 @@ Many other methods are also available:
485
485
+------------------------+----------------------------------------------------+
486
486
| ``previousAll() `` | All preceding siblings |
487
487
+------------------------+----------------------------------------------------+
488
- | ``parents() `` | Parent nodes |
488
+ | ``parents() `` | Returns the parent nodes |
489
489
+------------------------+----------------------------------------------------+
490
- | ``children() `` | Children |
490
+ | ``children() `` | Returns children nodes |
491
491
+------------------------+----------------------------------------------------+
492
492
| ``reduce($lambda) `` | Nodes for which the callable does not return false |
493
493
+------------------------+----------------------------------------------------+
0 commit comments