Enter a type and click search.




Results for PayPal\Braintree\Gateway\Validator\GeneralResponseValidator

File: vendor/paypal/module-braintree-core/etc/di.xml

<virtualType name="BraintreeVoidCommand"
             type="PayPal\Braintree\Gateway\Command\GatewayCommand">
    <arguments>
        <argument name="client" xsi:type="object">
            PayPal\Braintree\Gateway\Http\Client\TransactionVoid
        </argument>
        <argument name="requestBuilder" xsi:type="object">
            PayPal\Braintree\Gateway\Request\VoidDataBuilder
        </argument>
        <argument name="handler" xsi:type="object">
            PayPal\Braintree\Gateway\Response\VoidHandler
        </argument>
        <argument name="validator" xsi:type="object">
            PayPal\Braintree\Gateway\Validator\GeneralResponseValidator
        </argument>
        <argument name="transferFactory" xsi:type="object">
            PayPal\Braintree\Gateway\Http\TransferFactory
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual BraintreeVoidCommand object that it should return a PayPal\Braintree\Gateway\Command\GatewayCommand object.

This configuration tells the Object Manager that when a user wants a BraintreeVoidCommand object that the following arguments should be used in the foo object's constructor.

File: vendor/paypal/module-braintree-core/etc/di.xml

<virtualType name="BraintreeRefundCommand"
             type="PayPal\Braintree\Gateway\Command\GatewayCommand">
    <arguments>
        <argument name="client" xsi:type="object">
            PayPal\Braintree\Gateway\Http\Client\TransactionRefund
        </argument>
        <argument name="requestBuilder" xsi:type="object">
            PayPal\Braintree\Gateway\Request\RefundDataBuilder
        </argument>
        <argument name="validator" xsi:type="object">
            PayPal\Braintree\Gateway\Validator\GeneralResponseValidator
        </argument>
        <argument name="handler" xsi:type="object">
            PayPal\Braintree\Gateway\Response\RefundHandler
        </argument>
        <argument name="transferFactory" xsi:type="object">
            PayPal\Braintree\Gateway\Http\TransferFactory
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual BraintreeRefundCommand object that it should return a PayPal\Braintree\Gateway\Command\GatewayCommand object.

This configuration tells the Object Manager that when a user wants a BraintreeRefundCommand object that the following arguments should be used in the foo object's constructor.