Completed
Push — master ( e2c111...547fb0 )
by Peter
19:35
created

IndexAnnotation   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 11
ccs 0
cts 2
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A init() 0 4 1
1
<?php
2
3
/*
4
 * To change this license header, choose License Headers in Project Properties.
5
 * To change this template file, choose Tools | Templates
6
 * and open the template in the editor.
7
 */
8
9
namespace Maslosoft\Mangan\Annotations\Indexes;
10
11
use Exception;
12
use Maslosoft\Mangan\Meta\ManganPropertyAnnotation;
13
14
/**
15
 * IndexAnnotation
16
 *
17
 * @author Piotr Maselkowski <pmaselkowski at gmail.com>
18
 */
19
class IndexAnnotation extends ManganPropertyAnnotation
20
{
21
22
	const Ns = __NAMESPACE__;
1 ignored issue
show
Coding Style introduced by
Constant Ns should be defined in uppercase
Loading history...
23
24
	public function init()
25
	{
26
		throw new Exception('Not implemented');
27
	}
28
29
}
30