micro-module/decorator-bundle 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

micro-module/decorator-bundle

Composer 安装命令:

composer require micro-module/decorator-bundle

包简介

Symfony bundle to handle decorators in the service containers

README 文档

README

Gitter Build Status Dependency Status Average time to resolve an issue Percentage of issues still open

Provides consistent decorator handling for the Symfony Dependency Injection Container.

Installation

For Symfony 3.3 up to 4:

composer require internations/decorator-bundle

For Symfony < 3.3:

composer require internations/decorator-bundle:~0

Usage

"Decorate this"-mode

In "decorate this"-mode you declare your decorators in the dependency at hand. A configuration example:

<service id="iterator" class="ArrayIterator">
    <argument type="collection">
        <argument type="string">element1</argument>
        <argument type="string">element2</argument>
    </argument>
    <tag name="decorator.decorate_this" decorator_id="infinite_iterator"/>
</service>

<service id="infinite_iterator" class="InifiteIterator" public="false">
    <argument type="service" id="__subject__"/>
</service>

The configuration above will create this instance:

$iterator = new InfiniteIterator(
    new ArrayIterator(['element1', 'element2'])
);

"Decorate other" mode

In "decorate other"-mode you declare the subjects you are decorating in the decorator definition itself. A configuration example:

<service id="iterator" class="ArrayIterator">
    <argument type="collection">
        <argument type="string">element1</argument>
        <argument type="string">element2</argument>
    </argument>
</service>

<service id="infinite_iterator" class="InifiteIterator" public="false">
    <argument type="service" id="__subject__"/>
    <tag name="decorator.decorate_other" service_id="iterator"/>
</service>

The configuration above will again create this instance:

$iterator = new InfiniteIterator(
    new ArrayIterator(['element1', 'element2'])
);

Specifying priorities

To control the order of decoration, setting a priority flag for the decorator is supported. Priority can be between PHP_INT_MAX and -PHP_INT_MAX, the default priority is 0.

<service id="infinite_iterator" class="InifiteIterator" public="false">
    <argument type="service" id="__subject__"/>
    <tag name="decorator.decorate_other" service_id="iterator" priority="255"/>
</service>

Using the Bundle programmatically

In cases where you want to reuse the decoration functionality outside of the XML config, you can use the following API in your Compiler Pass. Here is an example to add decorate service common_service with the decorator special_decorator and priority 255.

namespace ;

use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
use InterNations\Bundle\DecoratorBundle\Tagger\DecorationTagger;
use Symfony\Component\DependencyInjection\ContainerBuilder;

class MyCompilerPass implements CompilerPassInterface
{
    public function process(ContainerBuilder $container)
    {
        DecorationTagger::tag($container, 'common_service', 'special_decorator', 255);
    }
}

Credits

Based on Dovydas Bartkevicius’ idea, with a bunch of input from Max Beutel.

统计信息

  • 总下载量: 154
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-06-06

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固