WaitingPayment   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __toString() 0 3 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: igor
5
 * Date: 16/08/18
6
 * Time: 22:30
7
 */
8
9
namespace AdminWeb\PayerPagSeguro\Events;
10
11
12
use AdminWeb\Payer\EVENTs\CancelledEVENT as CancelEVENT;
13
use AdminWeb\Payer\EVENTs\PaidEVENT as PaidedEVENT;
14
15
class WaitingPayment extends AbstractEvent
16
{
17
18
    const EVENT = self::WAITING_PAYMENT;
19
20
    const CODE = 1;
21
22
    public function __toString()
23
    {
24
        return self::EVENT;
25
    }
26
}