Passed
Branch feature/ECO-808-scrutinizer (bde35b)
by Andrey
07:45
created

OrderFailedAuthNotificationSender   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 10
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A notify() 0 2 1
1
<?php
2
3
/**
4
 * Apache OSL-2
5
 * Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
6
 */
7
8
namespace SprykerEco\Zed\Amazonpay\Business\Payment\Handler\Transaction\Notification;
9
10
class OrderFailedAuthNotificationSender implements OrderNotificationSenderInterface
11
{
12
13
    /**
14
     * @param \SprykerEco\Zed\Amazonpay\Business\Payment\Handler\Transaction\Notification\AbstractNotificationMessage $notificationMessage
15
     *
16
     * @return void
17
     */
18
    public function notify(AbstractNotificationMessage $notificationMessage)
19
    {
20
    }
21
22
}
23