Completed
Pull Request — master (#1)
by Artem
04:27 queued 02:57
created

SinchSmsStatus   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 14
c 1
b 0
f 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
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