mirror of
https://github.com/mbierlee/poodinis.git
synced 2024-11-15 04:04:01 +01:00
Remove deprecated RegistrationOptions alias
This commit is contained in:
parent
4b1bc5077a
commit
e2d86bae0d
|
@ -6,6 +6,7 @@ should not be affected by this change.
|
||||||
* ADD application contexts. You can register dependencies within an application context which allow you to fine-tune the creation of dependency instances.
|
* ADD application contexts. You can register dependencies within an application context which allow you to fine-tune the creation of dependency instances.
|
||||||
* CHANGE all public poodinis imports to private. This should not affect you if you use the package import "poodinis" instead of individual modules.
|
* CHANGE all public poodinis imports to private. This should not affect you if you use the package import "poodinis" instead of individual modules.
|
||||||
* REMOVE deprecated ADD_CONCRETE_TYPE_REGISTRATION registration option.
|
* REMOVE deprecated ADD_CONCRETE_TYPE_REGISTRATION registration option.
|
||||||
|
* REMOVE deprecated RegistrationOptions alias.
|
||||||
|
|
||||||
**Version 5.0.0**
|
**Version 5.0.0**
|
||||||
* DEPRECATE ADD_CONCRETE_TYPE_REGISTRATION registration option. It basically does nothing anymore. See next point.
|
* DEPRECATE ADD_CONCRETE_TYPE_REGISTRATION registration option. It basically does nothing anymore. See next point.
|
||||||
|
|
|
@ -54,11 +54,6 @@ public enum RegistrationOption {
|
||||||
DO_NOT_ADD_CONCRETE_TYPE_REGISTRATION
|
DO_NOT_ADD_CONCRETE_TYPE_REGISTRATION
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Deprecated: Use enum RegistrationOption instead
|
|
||||||
*/
|
|
||||||
alias RegistrationOptions = RegistrationOption;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The dependency container maintains all dependencies registered with it.
|
* The dependency container maintains all dependencies registered with it.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue