Completed
Push — master ( 3d86a4...f2c5a1 )
by Igor C. de
11:37
created

ContestEvent::__toString()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: igor
5
 * Date: 16/08/18
6
 * Time: 17:19
7
 */
8
9
namespace AdminWeb\PayerPagSeguro\Events;
10
11
12
class ContestEvent extends AbstractEvent
13
{
14
    const EVENT = self::CONTEST;
15
16
    const CODE = 5;
17
18
    public function __toString()
19
    {
20
       return self::EVENT;
21
    }
22
}