File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public function __construct(EntityManagerInterface $em)
38
38
parent ::__construct ('db:wait ' );
39
39
$ this ->em = $ em ;
40
40
$ this ->setDescription ('Waits for database availability. ' )
41
- ->setHelp ('This command allows you to wait for database availability. ' );
41
+ ->setHelp ('This command allows you to wait for database availability. ' );
42
42
}
43
43
44
44
/**
Original file line number Diff line number Diff line change 4
4
namespace App \DataFixtures ;
5
5
6
6
use Doctrine \Bundle \FixturesBundle \Fixture ;
7
- use Doctrine \Common \ Persistence \ObjectManager ;
7
+ use Doctrine \Persistence \ObjectManager ;
8
8
9
9
class AppFixtures extends Fixture
10
10
{
11
- public function load (ObjectManager $ manager )
11
+ public function load (ObjectManager $ manager ): void
12
12
{
13
13
// $product = new Product();
14
14
// $manager->persist($product);
Original file line number Diff line number Diff line change 12
12
*/
13
13
final class Version20190222213409 extends AbstractMigration
14
14
{
15
- public function getDescription () : string
15
+ public function getDescription (): string
16
16
{
17
17
return '' ;
18
18
}
19
19
20
- public function up (Schema $ schema ) : void
20
+ public function up (Schema $ schema ): void
21
21
{
22
22
// this up() migration is auto-generated, please modify it to your needs
23
23
$ this ->abortIf (
@@ -46,7 +46,7 @@ public function up(Schema $schema) : void
46
46
$ this ->addSql ($ sql );
47
47
}
48
48
49
- public function down (Schema $ schema ) : void
49
+ public function down (Schema $ schema ): void
50
50
{
51
51
// this down() migration is auto-generated, please modify it to your needs
52
52
$ this ->abortIf (
You can’t perform that action at this time.
0 commit comments