Completed
Push — master ( 1340cf...a41289 )
by rugk
02:46
created

Constants   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 0
dl 0
loc 15
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 1 1
A __clone() 0 1 1
1
<?php
2
/**
3
 * @author Threema GmbH
4
 * @copyright Copyright (c) 2015-2016 Threema GmbH
5
 */
6
7
8
namespace Threema\MsgApi;
9
10
final class Constants {
11
	const PUBLIC_KEY_PREFIX = 'public:';
12
	const PRIVATE_KEY_PREFIX = 'private:';
13
	const DEFAULT_PINNED_KEY = 'sha256//PI1YNwkAgVLVmnydc84An+4reEMvoXcYCEgFP0WEF2Y=;sha256//8SLubAXo6MrrGziVya6HjCS/Cuc7eqtzw1v6AfIW57c=';
14
15
	/**
16
	 * create instance disabled
17
	 */
18
	private function __construct() {}
19
20
	/**
21
	 * clone instance disabled
22
	 */
23
	private function __clone() {}
24
}
25