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

SinchSmsStatus::__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 SMS Status.
15
 *
16
 * @author Artem Henvald <[email protected]>
17
 */
18
final class SinchSmsStatus
19
{
20
    const PENDING = 'pending';
21
    const SUCCESSFUL = 'successful';
22
    const FAULTED = 'faulted';
23
    const UNKNOWN = 'unknown';
24
25
    /**
26
     * Constructor.
27
     */
28
    private function __construct()
29
    {
30
    }
31
}
32