File tree 5 files changed +43
-33
lines changed
src/Bridges/SymfonyConsole
tests/matrix/symfony-bundle
5 files changed +43
-33
lines changed Original file line number Diff line number Diff line change 16
16
17
17
class ContinueCommand extends BaseCommand
18
18
{
19
- /** @var string */
20
- protected static $ defaultName = 'migrations:continue ' ;
19
+ public static function getDefaultName (): string
20
+ {
21
+ return 'migrations:continue ' ;
22
+ }
23
+
21
24
22
- /** @var string */
23
- protected static $ defaultDescription = 'Updates database schema by running all new migrations ' ;
25
+ public static function getDefaultDescription (): string
26
+ {
27
+ return 'Updates database schema by running all new migrations ' ;
28
+ }
24
29
25
30
26
31
protected function configure (): void
27
32
{
28
- $ this ->setName (self ::$ defaultName );
29
- $ this ->setDescription (self ::$ defaultDescription );
30
33
$ this ->setHelp ("If table 'migrations' does not exist in current database, it is created automatically. " );
31
34
}
32
35
Original file line number Diff line number Diff line change @@ -28,13 +28,19 @@ class CreateCommand extends BaseCommand
28
28
const CONTENT_SOURCE_EMPTY = 'empty ' ;
29
29
30
30
/** @var string */
31
- protected static $ defaultName = ' migrations:create ' ;
31
+ protected $ defaultContentSource = self :: CONTENT_SOURCE_DIFF ;
32
32
33
- /** @var string */
34
- protected static $ defaultDescription = 'Creates new migration file with proper name (e.g. 2015-03-14-130836-label.sql) ' ;
35
33
36
- /** @var string */
37
- protected $ defaultContentSource = self ::CONTENT_SOURCE_DIFF ;
34
+ public static function getDefaultName (): string
35
+ {
36
+ return 'migrations:create ' ;
37
+ }
38
+
39
+
40
+ public static function getDefaultDescription (): string
41
+ {
42
+ return 'Creates new migration file with proper name (e.g. 2015-03-14-130836-label.sql) ' ;
43
+ }
38
44
39
45
40
46
public function setDefaultContentSource (string $ defaultContentSource ): void
@@ -45,8 +51,6 @@ public function setDefaultContentSource(string $defaultContentSource): void
45
51
46
52
protected function configure (): void
47
53
{
48
- $ this ->setName (self ::$ defaultName );
49
- $ this ->setDescription (self ::$ defaultDescription );
50
54
$ this ->setHelp ('Prints path of the created file to standard output. ' );
51
55
52
56
$ this ->addArgument ('type ' , InputArgument::REQUIRED , $ this ->getTypeArgDescription ());
Original file line number Diff line number Diff line change 16
16
17
17
class ResetCommand extends BaseCommand
18
18
{
19
- /** @var string */
20
- protected static $ defaultName = 'migrations:reset ' ;
19
+ public static function getDefaultName (): string
20
+ {
21
+ return 'migrations:reset ' ;
22
+ }
23
+
21
24
22
- /** @var string */
23
- protected static $ defaultDescription = 'Drops current database and recreates it from scratch ' ;
25
+ public static function getDefaultDescription (): string
26
+ {
27
+ return 'Drops current database and recreates it from scratch ' ;
28
+ }
24
29
25
30
26
31
protected function configure (): void
27
32
{
28
- $ this ->setName (self ::$ defaultName );
29
- $ this ->setDescription (self ::$ defaultDescription );
30
33
$ this ->setHelp ("Drops current database and runs all migrations " );
31
34
}
32
35
Original file line number Diff line number Diff line change @@ -4,11 +4,11 @@ PHP_VERSION_MAX="70299"
4
4
COMPOSER_REQUIRE=" $COMPOSER_REQUIRE doctrine/dbal:~2.5"
5
5
COMPOSER_REQUIRE=" $COMPOSER_REQUIRE doctrine/orm:~2.5"
6
6
COMPOSER_REQUIRE=" $COMPOSER_REQUIRE doctrine/doctrine-bundle:~1.0"
7
- COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/config:~3.3 "
8
- COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/console:~3.3 "
9
- COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/dependency-injection:~3.3 "
10
- COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/doctrine-bridge:~3.3 "
11
- COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/framework-bundle:~3.3 "
12
- COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/http-kernel:~3.3 "
13
- COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/yaml:~3.3 "
7
+ COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/config:~3.4 "
8
+ COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/console:~3.4 "
9
+ COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/dependency-injection:~3.4 "
10
+ COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/doctrine-bridge:~3.4 "
11
+ COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/framework-bundle:~3.4 "
12
+ COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/http-kernel:~3.4 "
13
+ COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/yaml:~3.4 "
14
14
DBAL=' doctrine'
Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ PHP_VERSION_MAX="70499"
4
4
COMPOSER_REQUIRE=" $COMPOSER_REQUIRE doctrine/dbal:~2.5"
5
5
COMPOSER_REQUIRE=" $COMPOSER_REQUIRE doctrine/orm:~2.6.3"
6
6
COMPOSER_REQUIRE=" $COMPOSER_REQUIRE doctrine/doctrine-bundle:~1.0"
7
- COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/config:~3.3 "
8
- COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/console:~3.3 "
9
- COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/dependency-injection:~3.3 "
10
- COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/doctrine-bridge:~3.3 "
11
- COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/framework-bundle:~3.3 "
12
- COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/http-kernel:~3.3 "
13
- COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/yaml:~3.3 "
7
+ COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/config:~3.4 "
8
+ COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/console:~3.4 "
9
+ COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/dependency-injection:~3.4 "
10
+ COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/doctrine-bridge:~3.4 "
11
+ COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/framework-bundle:~3.4 "
12
+ COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/http-kernel:~3.4 "
13
+ COMPOSER_REQUIRE=" $COMPOSER_REQUIRE symfony/yaml:~3.4 "
14
14
COMPOSER_REQUIRE=" $COMPOSER_REQUIRE nette/tester:~2.3"
15
15
16
16
DBAL=' doctrine'
You can’t perform that action at this time.
0 commit comments