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

zend-expressive-platesrenderer 2.2.0

Latest

Choose a tag to compare

@weierophinney weierophinney released this 08 Oct 17:08
· 6 commits to master since this release
2.2.0

Added

  • Nothing.

Changed

  • #37 changes some internal logic in how the UrlHelper and ServerUrlHelper are exposed as Plates functions, reducing the number of nested calls and improving performance.

Deprecated

  • #37 deprecates the method Zend\Expressive\Plates\Extension\UrlExtension::generateServerUrl(). Originally, the extension registered this method with the Plates engine as the function serverurl(); we now register the Zend\Expressive\Helper\ServerUrlHelper instance directly (as it is callable), making the method obsolete. It will be removed in version 3.0.0.

  • #37 deprecates the method Zend\Expressive\Plates\Extension\UrlExtension::generateUrl(). Originally, the extension registered this method with the Plates engine as the function url(); we now register the Zend\Expressive\Helper\UrlHelper instance directly (as it is callable), making the method obsolete. It will be removed in version 3.0.0.

  • #37 deprecates the method Zend\Expressive\Plates\Extension\UrlExtension::getRouteResult(). Originally, the extension registered this method with the Plates engine as the function route(); we now register the Zend\Expressive\Helper\UrlHelper::getRouteResult() method directly, making the method obsolete. It will be removed in version 3.0.0.

Removed

  • Nothing.

Fixed

  • Nothing.