第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會有你想問的

Symfony 服務(wù),tagged_locator 適用于 yaml 中的配置,但不適用于 php

Symfony 服務(wù),tagged_locator 適用于 yaml 中的配置,但不適用于 php

PHP
慕田峪4524236 2023-10-21 17:22:21
我在服務(wù)配置中使用 tagged_locator 一切都可以使用 yaml 配置。但是當(dāng)我在php中進(jìn)行配置時(shí),它不再起作用了。我的服務(wù)的參數(shù)沒有填寫(0個(gè)providedServices)配置Yamlservices:    # default configuration for services in *this* file    _defaults:        autowire: true      # Automatically injects dependencies in your services.        autoconfigure: true # Automatically registers your services as commands, event subscribers, etc.    # makes classes in src/ available to be used as services    # this creates a service per class whose id is the fully-qualified class name    App\:        resource: '../src/'        exclude:            - '../src/DependencyInjection/'            - '../src/Entity/'            - '../src/Kernel.php'            - '../src/Tests/'    # controllers are imported separately to make sure services can be injected    # as action arguments even if you don't extend any base controller class    App\Controller\:        resource: '../src/Controller/'        tags: ['controller.service_arguments']    # add more service definitions when explicit configuration is needed    # please note that last definitions always *replace* previous ones    # Will tag automatically all service that implement the VoterInterface created    _instanceof:        App\Voter\CriterionInterface:            tags:                - 'app.post.voter.criterion'    App\Voter\PostVoter:        arguments:            - !tagged_locator 'app.post.voter.criterion'配置PHPreturn static function (ContainerConfigurator $containerConfigurator): void {    $services = $containerConfigurator->services();    $services->defaults()        ->autowire()        ->autoconfigure();    $services->load('App\\', __DIR__.'/../src/')        ->exclude(            [                __DIR__.'/../src/DependencyInjection/',                __DIR__.'/../src/Entity/',                __DIR__.'/../src/Kernel.php',                __DIR__.'/../src/Tests/',            ]        );
查看完整描述

1 回答

?
LEATH

TA貢獻(xiàn)1936條經(jīng)驗(yàn) 獲得超7個(gè)贊

配置器是不可變的:您需要存儲和使用調(diào)用defaults()和instanceof()的返回值:


    $services = $services->defaults()

        ->autowire()

        ->autoconfigure();


    $services = $services->instanceof(CriterionInterface::class)

        ->tag('app.post');


    $services->load('App\\', __DIR__.'/../src/')

        ->exclude(

            [

                __DIR__.'/../src/DependencyInjection/',

                __DIR__.'/../src/Entity/',

                __DIR__.'/../src/Kernel.php',

                __DIR__.'/../src/Tests/',

            ]

        );

Instanceof 條件必須在基于路徑的服務(wù)發(fā)現(xiàn)之前配置(第一次調(diào)用 load())


查看完整回答
反對 回復(fù) 2023-10-21
  • 1 回答
  • 0 關(guān)注
  • 124 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號