EpvResults   A
last analyzed

Complexity

Total Complexity 5

Size/Duplication

Total Lines 74
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 5
lcom 0
cbo 0
dl 0
loc 74
c 0
b 0
f 0
rs 10

5 Methods

Rating   Name   Duplication   Size   Complexity  
A getId() 0 4 1
A setGithub() 0 6 1
A getGithub() 0 4 1
A setRuntime() 0 6 1
A getRuntime() 0 4 1
1
<?php
2
3
namespace AppBundle\Entity;
4
5
use Doctrine\ORM\Mapping as ORM;
6
7
/**
8
 * EpvResults
9
 */
10
class EpvResults
11
{
12
	/**
13
	 * @var integer
14
	 */
15
	private $id;
16
17
	/**
18
	 * @var string
19
	 */
20
	private $github;
21
22
	/**
23
	 * @var integer
24
	 */
25
	private $runtime;
26
27
28
	/**
29
	 * Get id
30
	 *
31
	 * @return integer
32
	 */
33
	public function getId()
34
	{
35
		return $this->id;
36
	}
37
38
	/**
39
	 * Set github
40
	 *
41
	 * @param string $github
42
	 * @return EpvResults
43
	 */
44
	public function setGithub($github)
45
	{
46
		$this->github = $github;
47
48
		return $this;
49
	}
50
51
	/**
52
	 * Get github
53
	 *
54
	 * @return string
55
	 */
56
	public function getGithub()
57
	{
58
		return $this->github;
59
	}
60
61
	/**
62
	 * Set runtime
63
	 *
64
	 * @param integer $runtime
65
	 * @return EpvResults
66
	 */
67
	public function setRuntime($runtime)
68
	{
69
		$this->runtime = $runtime;
70
71
		return $this;
72
	}
73
74
	/**
75
	 * Get runtime
76
	 *
77
	 * @return integer
78
	 */
79
	public function getRuntime()
80
	{
81
		return $this->runtime;
82
	}
83
}
84