diff --git a/src/Codeception/Module/Symfony.php b/src/Codeception/Module/Symfony.php index daae2cd7..a5b8fac0 100644 --- a/src/Codeception/Module/Symfony.php +++ b/src/Codeception/Module/Symfony.php @@ -78,7 +78,10 @@ * * ## Parts * - * * services - allows to use Symfony DIC only with WebDriver or PhpBrowser modules. + * * `services`: Symfony dependency injection container (DIC) + * + * See [WebDriver module](https://codeception.com/docs/modules/WebDriver#Loading-Parts-from-other-Modules) + * for general information on how to load parts of a framework module. * * Usage example: * @@ -87,14 +90,17 @@ * modules: * enabled: * - Symfony: - * part: SERVICES + * part: services * - Doctrine2: * depends: Symfony * - WebDriver: * url: http://your-url.com - * browser: phantomjs + * browser: firefox * ``` * + * If you're using Symfony with Eloquent ORM (instead of Doctrine), you can load the [`ORM` part of Laravel module](https://codeception.com/docs/modules/Laravel5#Parts) + * in addition to Symfony module. + * */ class Symfony extends Framework implements DoctrineProvider, PartedModule {