@@ -136,7 +136,7 @@ The call should lead to a call that contains the following output:
136136Now that we have set up the Doctrine Migrations, we shall now start working on our entities.
137137
138138We need to create a base for our entities so that they have the same starting point.
139- For that, we will add a new directory ` src/App/src/Entiy ` in which we will add an abstract class, ` AbstractEntity.php ` :
139+ For that, we will add a new directory ` src/App/src/Entity ` in which we will add an abstract class, ` AbstractEntity.php ` :
140140
141141``` php
142142<?php
@@ -470,7 +470,7 @@ The module is now registered.
470470For the last step we will create a migration using our ` bin/doctrine-migrations ` file and then execute it:
471471
472472``` shell
473- php bin/doctrine-migrations.php migrations:diff
473+ php bin/doctrine-migrations migrations:diff
474474```
475475
476476You should get an output similar to:
@@ -507,11 +507,26 @@ final class Version20251127183637 extends AbstractMigration
507507We only have to execute the migrations now with the command:
508508
509509``` shell
510- php bin/doctrine-migrations.php migrations:migrate
510+ php bin/doctrine-migrations migrations:migrate
511511```
512512
513513The output should be similar to this:
514514
515515``` terminaloutput
516516[OK] Successfully migrated to version: Migrations\Version2025112718363
517517```
518+
519+ ### Summary
520+
521+ - [ Modified] src/App/src/ConfigProvider.php
522+ - [ +] config/cli-config.php
523+ - [ +] src/App/src/DBAL/Types/UuidType.php
524+ - [ +] bin/doctrine-migrations
525+ - [ +] src/App/src/Entity/AbstractEntity.php
526+ - [ +] src/Book/src/Entity/Book.php
527+ - [ +] src/App/src/Repository/AbstractRepository.php
528+ - [ +] src/App/src/Book/BookRepository.php
529+ - [ +] src/Book/src/ConfigProvider.php
530+ - [ Modified] config/config.php
531+ - [ Modified] composer.json
532+ - [ +] src/App/src/Migration/Version{date_time}.php
0 commit comments