You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Remove support of eol php
* Remove eol symfony from travis, test over php 7.4
* Remove references to symfony 2
* remove eol php and symfony from github actions
* Added Github Workflow Bagde
Copy file name to clipboardExpand all lines: src/Codeception/Module/Symfony.php
+2-22Lines changed: 2 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@
29
29
*
30
30
* ## Config
31
31
*
32
-
* ### Symfony 4.x
32
+
* ### Symfony 5.x or 4.x
33
33
*
34
34
* * app_path: 'src' - in Symfony 4 Kernel is located inside `src`
35
35
* * environment: 'local' - environment used for load kernel
@@ -71,26 +71,6 @@
71
71
* environment: 'local_test'
72
72
*
73
73
*
74
-
* ### Symfony 2.x
75
-
*
76
-
* * app_path: 'app' - specify custom path to your app dir, where bootstrap cache and kernel interface is located.
77
-
* * environment: 'local' - environment used for load kernel
78
-
* * kernel_class: 'AppKernel' - kernel class name
79
-
* * debug: true - turn on/off debug mode
80
-
* * em_service: 'doctrine.orm.entity_manager' - use the stated EntityManager to pair with Doctrine Module.
81
-
* * cache_router: 'false' - enable router caching between tests in order to [increase performance](http://lakion.com/blog/how-did-we-speed-up-sylius-behat-suite-with-blackfire)
82
-
* * rebootable_client: 'true' - reboot client's kernel before each request
83
-
* * mailer: 'swiftmailer' - choose the mailer used by your application
84
-
*
85
-
* ### Example (`functional.suite.yml`) - Symfony 2.x Directory Structure
86
-
*
87
-
* ```
88
-
* modules:
89
-
* - Symfony:
90
-
* app_path: 'app/front'
91
-
* environment: 'local_test'
92
-
* ```
93
-
*
94
74
* ## Public Properties
95
75
*
96
76
* * kernel - HttpKernel instance
@@ -250,7 +230,7 @@ protected function onReconfigure($settings = [])
250
230
publicfunction_getEntityManager()
251
231
{
252
232
if ($this->kernel === null) {
253
-
$this->fail('Symfony2 platform module is not loaded');
233
+
$this->fail('Symfony module is not loaded');
254
234
}
255
235
if (!isset($this->permanentServices[$this->config['em_service']])) {
0 commit comments