Entity::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
ccs 0
cts 4
cp 0
cc 1
eloc 2
nc 1
nop 0
crap 2
1
<?php
2
3
/**
4
 * Entity Manager
5
 *
6
 * @category  	src\Batch
7
 * @package   	src\Batch\common
8
 * @author    	Judicaël Paquet <[email protected]>
9
 * @copyright 	Copyright (c) 2013-2014 PAQUET Judicaël FR Inc. (https://github.com/las93)
10
 * @license   	https://github.com/las93/venus2/blob/master/LICENSE.md Tout droit réservé à PAQUET Judicaël
11
 * @version   	Release: 2.0.0
12
 * @filesource	https://github.com/las93/venus2
13
 * @link      	https://github.com/las93
14
 * @since     	2.0.0
15
 */
16
namespace Venus\src\Batch\common;
17
18
use \Venus\core\Entity as CoreEntity;
19
20
/**
21
 * Entity Manager
22
 *
23
 * @category  	src\Batch
24
 * @package   	src\Batch\common
25
 * @author    	Judicaël Paquet <[email protected]>
26
 * @copyright 	Copyright (c) 2013-2014 PAQUET Judicaël FR Inc. (https://github.com/las93)
27
 * @license   	https://github.com/las93/venus2/blob/master/LICENSE.md Tout droit réservé à PAQUET Judicaël
28
 * @version   	Release: 2.0.0
29
 * @filesource	https://github.com/las93/venus2
30
 * @link      	https://github.com/las93
31
 * @since     	2.0.0
32
 */
33
abstract class Entity extends CoreEntity
34
{
35
	/**
36
	 * Constructor
37
	 *
38
	 * @access public
39
	 * @return object
0 ignored issues
show
Comprehensibility Best Practice introduced by
Adding a @return annotation to constructors is generally not recommended as a constructor does not have a meaningful return value.

Adding a @return annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.

Please refer to the PHP core documentation on constructors.

Loading history...
40
	 */
41
	public function __construct()
42
	{
43
		parent::__construct();
44
	}
45
}
46