bentools/doctrine-watcher-bundle

此包已被弃用且不再维护。没有建议的替代包。

bentools/doctrine-watcher 的 Symfony Bundle

dev-master / 1.0.x-dev 2019-01-09 16:53 UTC

This package is auto-updated.

Last update: 2022-06-14 12:04:22 UTC


README

bentools/doctrine-watcher 提供的 Symfony Bundle。

安装

composer require bentools/doctrine-watcher-bundle:1.0.x-dev

配置

配置此包有2种方式

通过 Bundle 配置

# app/config/config.yml or config/packages/doctrine_watcher.yaml with Symfony Flex
doctrine_watcher:
    watch:
        App\Entity\Book:
            properties:
                title:
                    callback: 'App\Services\BookWatcher::onTitleChange'
                reviews:
                    callback: 'App\Services\BookWatcher::onReviewsChange'
                    iterable: true

通过服务标签

# app/config/services.yml or config/services.yaml with Symfony Flex
services:
    App\Services\BookWatcher:
        tags:
            - { name: bentools.doctrine_watcher, entity_class: App\Entity\Book, property: 'title', method: 'onTitleChange' }
            - { name: bentools.doctrine_watcher, entity_class: App\Entity\Book, property: 'reviews', method: 'onReviewsChange', iterable: true }

许可证

MIT.