@@ -558,7 +558,8 @@ narrow down your node selection by chaining the method calls::
558
558
return false;
559
559
}
560
560
})
561
- ->first();
561
+ ->first()
562
+ ;
562
563
563
564
.. tip ::
564
565
@@ -720,8 +721,10 @@ configuration option:
720
721
<container xmlns =" http://symfony.com/schema/dic/services"
721
722
xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
722
723
xmlns : swiftmailer =" http://symfony.com/schema/dic/swiftmailer"
723
- xsi : schemaLocation =" http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd
724
- http://symfony.com/schema/dic/swiftmailer http://symfony.com/schema/dic/swiftmailer/swiftmailer-1.0.xsd" >
724
+ xsi : schemaLocation =" http://symfony.com/schema/dic/services
725
+ http://symfony.com/schema/dic/services/services-1.0.xsd
726
+ http://symfony.com/schema/dic/swiftmailer
727
+ http://symfony.com/schema/dic/swiftmailer/swiftmailer-1.0.xsd" >
725
728
726
729
<!-- ... -->
727
730
<swiftmailer : config disable-delivery =" true" />
@@ -784,8 +787,9 @@ machine only.
784
787
the ``app/phpunit.xml `` file.
785
788
786
789
By default, only the tests from your own custom bundles stored in the standard
787
- directories ``src/*/*Bundle/Tests `` or ``src/*/Bundle/*Bundle/Tests `` are run
788
- by the ``phpunit `` command, as configured in the ``app/phpunit.xml.dist `` file:
790
+ directories ``src/*/*Bundle/Tests ``, ``src/*/Bundle/*Bundle/Tests ``,
791
+ ``src/*Bundle/Tests `` are run by the ``phpunit `` command, as configured
792
+ in the ``app/phpunit.xml.dist `` file:
789
793
790
794
.. code-block :: xml
791
795
@@ -796,6 +800,7 @@ by the ``phpunit`` command, as configured in the ``app/phpunit.xml.dist`` file:
796
800
<testsuite name =" Project Test Suite" >
797
801
<directory >../src/*/*Bundle/Tests</directory >
798
802
<directory >../src/*/Bundle/*Bundle/Tests</directory >
803
+ <directory >../src/*Bundle/Tests</directory >
799
804
</testsuite >
800
805
</testsuites >
801
806
<!-- ... -->
0 commit comments