SubscriptionTransitions::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
eloc 0
nc 1
nop 0
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