Completed
Push — master ( afa4f8...42f6c3 )
by Peter
22:39
created

ManganelTypeAnnotation::getEntity()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
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\Manganel\Meta;
10
11
/**
12
 * ManganTypeAnnotation
13
 *
14
 * @author Piotr Maselkowski <pmaselkowski at gmail.com>
15
 */
16
abstract class ManganelTypeAnnotation extends ManganelAnnotation
17
{
18
19
	/**
20
	 * 
21
	 * @return DocumentTypeMeta
22
	 */
23
	public function getEntity()
24
	{
25
		return parent::getEntity();
26
	}
27
28
}
29