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
* * app_path: 'src' - in Symfony 4 Kernel is located inside `src`
27
29
* * environment: 'local' - environment used for load kernel
30
+
* * kernel_class: 'App\Kernel' - kernel class name
28
31
* * em_service: 'doctrine.orm.entity_manager' - use the stated EntityManager to pair with Doctrine Module.
29
32
* * debug: true - turn on/off debug mode
30
33
* * 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)
@@ -44,6 +47,7 @@
44
47
* * app_path: 'app' - specify custom path to your app dir, where the kernel interface is located.
45
48
* * var_path: 'var' - specify custom path to your var dir, where bootstrap cache is located.
46
49
* * environment: 'local' - environment used for load kernel
50
+
* * kernel_class: 'AppKernel' - kernel class name
47
51
* * em_service: 'doctrine.orm.entity_manager' - use the stated EntityManager to pair with Doctrine Module.
48
52
* * debug: true - turn on/off debug mode
49
53
* * 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)
@@ -63,6 +67,7 @@
63
67
*
64
68
* * app_path: 'app' - specify custom path to your app dir, where bootstrap cache and kernel interface is located.
65
69
* * environment: 'local' - environment used for load kernel
70
+
* * kernel_class: 'AppKernel' - kernel class name
66
71
* * debug: true - turn on/off debug mode
67
72
* * em_service: 'doctrine.orm.entity_manager' - use the stated EntityManager to pair with Doctrine Module.
68
73
* * 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)
@@ -104,6 +109,11 @@
104
109
*/
105
110
class Symfony extends Framework implements DoctrineProvider, PartedModule
0 commit comments