You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some time ago injection of Container/Config (and some other) were replaced by the direct call Container::getInstance() to be compatible with Octane (#38). The main problem with the current approach - implicit dependencies and (more important) implicit config (Container::getInstance()->make(Repository::class)->get(...)).
Recently I have reviewed all these places and looks like it is possible to convert all of them into explicit 🎉
This version is the deep refactoring of how the Application/Config and other global Laravel things are injected into classes (no implicit dependencies, see #151), how the package configs looks (no more untyped arrays, see #152), how the `Formatter` works internally (simplification and more extendabilities). And, probably the most interesting part, is improvements of the `Documentator` - the `Processor` is used for all tasks, the links will be correctly updated when one document is included into another; code links support, etc. Please follow [Upgrade Guide](https://github.com/LastDragon-ru/lara-asp/blob/main/UPGRADE.md) to migrate 🤗. You can ask a question and/or discuss in [release disscussion](#201).
Some time ago injection of
Container
/Config
(and some other) were replaced by the direct callContainer::getInstance()
to be compatible with Octane (#38). The main problem with the current approach - implicit dependencies and (more important) implicit config (Container::getInstance()->make(Repository::class)->get(...)
).Recently I have reviewed all these places and looks like it is possible to convert all of them into explicit 🎉
Container::getInstance()
(No implicit dependencies #160)serializer
) (77490f6)StreamOffset
) (New directive@type
#157, No implicit dependencies #160, Type registration update (@type
) #161)spa
) (No implicit dependencies #160)The text was updated successfully, but these errors were encountered: