Completed
Push — master ( 2b5327...235414 )
by Peter
09:57
created

IndexMeta   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 14
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: peter
5
 * Date: 17.12.17
6
 * Time: 15:27
7
 */
8
9
namespace Maslosoft\Mangan\Meta;
10
11
12
use Maslosoft\Addendum\Traits\MetaState;
13
14
class IndexMeta
15
{
16
	use MetaState;
17
18
	public $keys = [];
19
20
	public $options = [];
21
22
	public function __construct($keys = null, $options = null)
23
	{
24
		$this->keys = $keys;
25
		$this->options = $options;
26
	}
27
}