EmbeDiStore
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 17
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * This software package is licensed under `AGPL, Commercial` license[s].
5
 *
6
 * @package maslosoft/embedi
7
 * @license AGPL, Commercial
8
 *
9
 * @copyright Copyright (c) Peter Maselkowski <[email protected]>
10
 *
11
 */
12
13
namespace Maslosoft\EmbeDi\Storage;
14
15
use Maslosoft\EmbeDi\Interfaces\AdapterInterface;
16
use Maslosoft\EmbeDi\StaticStorage;
17
18
/**
19
 * EmbeDiStore
20
 *
21
 * @author Piotr Maselkowski <pmaselkowski at gmail.com>
22
 */
23
class EmbeDiStore extends StaticStorage
24
{
25
26
	/**
27
	 * This is required for adapters
28
	 */
29
	const StoreId = 'embedi';
0 ignored issues
show
Coding Style introduced by
Constant StoreId should be defined in uppercase
Loading history...
30
31
	public $stored = false;
32
33
	/**
34
	 * Adapters
35
	 * @var AdapterInterface[]
36
	 */
37
	public $adapters = [];
38
39
}
40