Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
41 | public static function getSubscribedEvents() |
||
42 | { |
||
43 | return array( |
||
44 | FastbillNotificationEvents::INCOMING_CUSTOMER_CREATED => 'onCustomerCreated', |
||
45 | FastbillNotificationEvents::INCOMING_CUSTOMER_CHANGED => 'onCustomerChanged', |
||
46 | FastbillNotificationEvents::INCOMING_CUSTOMER_DELETED => 'onCustomerDeleted' |
||
47 | ); |
||
48 | } |
||
49 | } |
||
50 |