File tree Expand file tree Collapse file tree 5 files changed +9
-2
lines changed Expand file tree Collapse file tree 5 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,9 @@ public function getData()
82
82
return $ this ->data ;
83
83
}
84
84
85
+ /**
86
+ * @return void
87
+ */
85
88
public function reset ()
86
89
{
87
90
$ this ->data = [];
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ public function getConfigTreeBuilder(): TreeBuilder
148
148
->end ()
149
149
->end ()
150
150
->booleanNode ('enable_profiler ' )
151
- ->info ('Use profiler to calculate and visualize migration status. ' )
151
+ ->info ('Whether or not to enable the profiler collector to calculate and visualize migration status. This adds some queries overhead . ' )
152
152
->defaultFalse ()
153
153
->end ()
154
154
->booleanNode ('transactional ' )
Original file line number Diff line number Diff line change 14
14
*/
15
15
class DoctrineMigrationsBundle extends Bundle
16
16
{
17
+ /** @return void */
17
18
public function build (ContainerBuilder $ container )
18
19
{
19
20
$ container ->addCompilerPass (new ConfigureDependencyFactoryPass ());
Original file line number Diff line number Diff line change 1
1
DoctrineMigrationsBundle
2
2
========================
3
3
4
- This bundle integrates the [ Doctrine2 Migrations library] ( http://www.doctrine-project.org/projects/migrations.html )
4
+ This bundle integrates the [ Doctrine Migrations library] ( http://www.doctrine-project.org/projects/migrations.html )
5
5
into Symfony applications. Database migrations help you version the changes in
6
6
your database schema and apply them in a predictable way on every server running
7
7
the application.
Original file line number Diff line number Diff line change @@ -83,6 +83,9 @@ application:
83
83
# Whether or not to wrap migrations in a single transaction.
84
84
transactional : true
85
85
86
+ # Whether or not to enable the profiler collector to calculate and visualize migration status. This adds some queries overhead.
87
+ # enable_profiler: false
88
+
86
89
services :
87
90
# Custom migration sorting service id
88
91
' Doctrine\Migrations\Version\Comparator ' : ~
You can’t perform that action at this time.
0 commit comments