Completed
Push — v2 ( d685ea...357b8a )
by Peter
14:20 queued 13s
created

SignalsAnnotation   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getEntity() 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\Signals\Meta;
10
11
use Maslosoft\Addendum\Collections\MetaAnnotation;
12
13
/**
14
 * SignalsAnnotation
15
 *
16
 * @author Piotr Maselkowski <pmaselkowski at gmail.com>
17
 */
18
abstract class SignalsAnnotation extends MetaAnnotation
19
{
20
21
	/**
22
	 * Get entity
23
	 * @return DocumentTypeMeta|DocumentPropertyMeta|DocumentMethodMeta
24
	 */
25
	public function getEntity()
26
	{
27
		return parent::getEntity();
28
	}
29
30
}
31