Skip to content

Commit b98bc49

Browse files
authored
Maintenance (CodeStyle fix, Release Script updates, ...) (#3369)
* Maintanance * fixed codestyle * updated codeception/base release script * updated changelog * version bump * ignoring "package" and "tests" dir for codestyle fixes * updatd docs * removed docs from codestylefix * added no-dev flag for yii templates
1 parent 3a01635 commit b98bc49

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Codeception/Module/Symfony.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@
6868
* * client - current Crawler instance
6969
*
7070
* ## Parts
71-
*
71+
*
7272
* * services - allows to use Symfony DIC only with WebDriver or PhpBrowser modules.
73-
*
73+
*
7474
* Usage example:
7575
*
7676
* ```yaml
@@ -135,7 +135,8 @@ public function _initialize()
135135
{
136136
$cache = Configuration::projectDir() . $this->config['var_path'] . DIRECTORY_SEPARATOR . 'bootstrap.php.cache';
137137
if (!file_exists($cache)) {
138-
throw new ModuleRequireException(__CLASS__,
138+
throw new ModuleRequireException(
139+
__CLASS__,
139140
"Symfony bootstrap file not found in $cache\n \n" .
140141
"Please specify path to bootstrap file using `var_path` config option\n \n" .
141142
"If you are trying to load bootstrap from a Bundle provide path like:\n \n" .
@@ -350,7 +351,6 @@ public function seeCurrentRouteIs($routeName, array $params = [])
350351
$intersection = array_intersect_assoc($expected, $match);
351352

352353
$this->assertEquals($expected, $intersection);
353-
354354
}
355355

356356
/**

0 commit comments

Comments
 (0)