diff --git a/UPGRADE.md b/UPGRADE.md index 84ffed01..9348b5bb 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -1,5 +1,13 @@ # Upgrade +## Upgrade to 3.5 + +## Final classes + +Some classes have been marked as `@final` because they are not supposed to be +extended. They will be `final`, and most of them will be marked with +`@internal` in 4.0.0. + ## From 2.x to 3.0.0 - The configuration for the migration namespace and directory changed as follows: @@ -79,8 +87,8 @@ doctrine_migrations: ### Underlying doctrine/migrations library Upgrading this bundle to `3.0` will also update the `doctrine/migrations` library to the version `3.0`. -Backward incompatible changes in `doctrine/migrations` 3.0 -are documented in the dedicated [UPGRADE](https://github.com/doctrine/migrations/blob/3.0.x/UPGRADE.md) document. +Backward incompatible changes in `doctrine/migrations` 3.0 +are documented in the dedicated [UPGRADE](https://github.com/doctrine/migrations/blob/3.0.x/UPGRADE.md) document. - The container is not automatically injected anymore when a migration implements `ContainerAwareInterface`. Custom migration factories should be used to inject additional dependencies into migrations. diff --git a/src/Collector/MigrationsCollector.php b/src/Collector/MigrationsCollector.php index 941df696..6ea514dc 100644 --- a/src/Collector/MigrationsCollector.php +++ b/src/Collector/MigrationsCollector.php @@ -16,6 +16,7 @@ use function count; use function get_class; +/** @final */ class MigrationsCollector extends DataCollector { /** @var DependencyFactory */ diff --git a/src/Collector/MigrationsFlattener.php b/src/Collector/MigrationsFlattener.php index f9310c94..aa298891 100644 --- a/src/Collector/MigrationsFlattener.php +++ b/src/Collector/MigrationsFlattener.php @@ -13,6 +13,7 @@ use function array_map; +/** @final */ class MigrationsFlattener { /** diff --git a/src/DependencyInjection/CompilerPass/ConfigureDependencyFactoryPass.php b/src/DependencyInjection/CompilerPass/ConfigureDependencyFactoryPass.php index 5dcdc6b0..5c887837 100644 --- a/src/DependencyInjection/CompilerPass/ConfigureDependencyFactoryPass.php +++ b/src/DependencyInjection/CompilerPass/ConfigureDependencyFactoryPass.php @@ -19,6 +19,7 @@ use function is_string; use function sprintf; +/** @final */ class ConfigureDependencyFactoryPass implements CompilerPassInterface { public function process(ContainerBuilder $container): void diff --git a/src/DependencyInjection/Configuration.php b/src/DependencyInjection/Configuration.php index dd0c61bb..67040f87 100644 --- a/src/DependencyInjection/Configuration.php +++ b/src/DependencyInjection/Configuration.php @@ -19,6 +19,7 @@ use function strtoupper; use function substr; +/** @final */ class Configuration implements ConfigurationInterface { public function getConfigTreeBuilder(): TreeBuilder diff --git a/src/DependencyInjection/DoctrineMigrationsExtension.php b/src/DependencyInjection/DoctrineMigrationsExtension.php index 5e6645f2..13fbfc9c 100644 --- a/src/DependencyInjection/DoctrineMigrationsExtension.php +++ b/src/DependencyInjection/DoctrineMigrationsExtension.php @@ -30,6 +30,7 @@ use function strlen; use function substr; +/** @final */ class DoctrineMigrationsExtension extends Extension { /** diff --git a/src/DoctrineMigrationsBundle.php b/src/DoctrineMigrationsBundle.php index 6b3f22f3..465c5447 100644 --- a/src/DoctrineMigrationsBundle.php +++ b/src/DoctrineMigrationsBundle.php @@ -10,6 +10,7 @@ use function dirname; +/** @final */ class DoctrineMigrationsBundle extends Bundle { /** @return void */