Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

zend-modulemanager 2.8.1

Compare
Choose a tag to compare
@weierophinney weierophinney released this 01 Nov 18:34
· 59 commits to master since this release

Added

  • Nothing.

Changed

  • #73 modifies the ModuleResolverListener slightly. In #5, released in 2.8.0, we added the ability to use classes named after the module itself as a module class. However, in some specific cases, primarily when the module is a top-level namespace, this can lead to conflicts with globally-scoped classes. The patch in this release modifies the logic to first check if a Module class exists under the module namespace, and will use that; otherwise, it will then check if a class named after the namespace exists. Additionally, the class now implements a blacklist of specific classes known to be non-instantiable, including the Generator class shipped with the PHP language itself.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • Nothing.