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

Constants::__clone()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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