SubscriptionTransitions   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php
2
3
/*
4
 * This file has been created by developers from BitBag.
5
 * Feel free to contact us once you face any issues or want to start
6
 * You can find more information about us on https://bitbag.io and write us
7
 * an email on [email protected].
8
 */
9
10
declare(strict_types=1);
11
12
namespace BitBag\SyliusMolliePlugin\Transitions;
13
14
final class SubscriptionTransitions
15
{
16
    public const GRAPH = 'mollie_subscription';
17
18
    public const TRANSITION_PROCESS = 'process';
19
20
    public const TRANSITION_ACTIVATE = 'activate';
21
22
    public const TRANSITION_CANCEL = 'cancel';
23
24
    public const TRANSITION_SUSPEND = 'suspend';
25
26
    public const TRANSITION_COMPLETE = 'complete';
27
28
    public const TRANSITION_FAIL = 'fail';
29
30
    private function __construct()
31
    {
32
    }
33
}
34