Completed
Pull Request — master (#1)
by Artem
01:37
created

SinchCallbackEvents::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
c 0
b 0
f 0
rs 10
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
/*
3
 * This file is part of the FreshSinchBundle
4
 *
5
 * (c) Artem Henvald <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
namespace Fresh\SinchBundle\Helper;
12
13
/**
14
 * Sinch Callback Events.
15
 *
16
 * @author Artem Henvald <[email protected]>
17
 */
18
final class SinchCallbackEvents
19
{
20
    const INCOMING_SMS = 'incomingSms';
21
22
    /**
23
     * Constructor.
24
     */
25
    private function __construct()
26
    {
27
    }
28
}
29