Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
communication_not_existing_handler_method.php
Go to the documentation of this file.
1 <?php
7 return [
8  'communication' => [
9  'topics' => [
10  'customerAdded' => [
11  'name' => 'customerAdded',
12  'is_synchronous' => false,
13  'request' => \Magento\Customer\Api\Data\CustomerInterface::class,
14  'request_type' => 'object_interface',
15  'response' => null,
16  'handlers' => [
17  'customerCreatedFirst' => [
18  'type' => \Magento\Customer\Api\CustomerRepositoryInterface::class,
19  'method' => 'invalid',
20  ],
21  'customerCreatedSecond' => [
22  'type' => \Magento\Customer\Api\CustomerRepositoryInterface::class,
23  'method' => 'delete',
24  ],
25  'saveNameNotDisabled' => [
26  'type' => \Magento\Customer\Api\CustomerRepositoryInterface::class,
27  'method' => 'save',
28  ],
29  'saveNameNotDisabledDigit' => [
30  'type' => \Magento\Customer\Api\CustomerRepositoryInterface::class,
31  'method' => 'save',
32  ],
33  ],
34  ],
35  ]
36  ]
37 ];