Code Duplication    Length = 52-52 lines in 2 locations

src/PHPSemVerChecker/Operation/TraitAdded.php 1 location

@@ 8-59 (lines=52) @@
5
use PhpParser\Node\Stmt\Trait_;
6
use PHPSemVerChecker\Node\Statement\Trait_ as PTrait;
7
8
class TraitAdded extends Operation {
9
	/**
10
	 * @var string
11
	 */
12
	protected $code = 'V046';
13
	/**
14
	 * @var string
15
	 */
16
	protected $reason = 'Trait was added.';
17
	/**
18
	 * @var string
19
	 */
20
	protected $fileAfter;
21
	/**
22
	 * @var \PhpParser\Node\Stmt\Trait_
23
	 */
24
	protected $traitAfter;
25
26
	/**
27
	 * @param string                      $fileAfter
28
	 * @param \PhpParser\Node\Stmt\Trait_ $traitAfter
29
	 */
30
	public function __construct($fileAfter, Trait_ $traitAfter)
31
	{
32
		$this->fileAfter = $fileAfter;
33
		$this->traitAfter = $traitAfter;
34
	}
35
36
	/**
37
	 * @return string
38
	 */
39
	public function getLocation()
40
	{
41
		return $this->fileAfter;
42
	}
43
44
	/**
45
	 * @return int
46
	 */
47
	public function getLine()
48
	{
49
		return $this->traitAfter->getLine();
50
	}
51
52
	/**
53
	 * @return string
54
	 */
55
	public function getTarget()
56
	{
57
		return PTrait::getFullyQualifiedName($this->traitAfter);
58
	}
59
}
60

src/PHPSemVerChecker/Operation/TraitRenamedCaseOnly.php 1 location

@@ 8-59 (lines=52) @@
5
use PhpParser\Node\Stmt\Trait_;
6
use PHPSemVerChecker\Node\Statement\Trait_ as PTrait;
7
8
class TraitRenamedCaseOnly extends Operation {
9
	/**
10
	 * @var string
11
	 */
12
	protected $code = 'V155';
13
	/**
14
	 * @var string
15
	 */
16
	protected $reason = 'Trait was renamed (case only).';
17
	/**
18
	 * @var string
19
	 */
20
	protected $fileAfter;
21
	/**
22
	 * @var \PhpParser\Node\Stmt\Trait_
23
	 */
24
	protected $traitAfter;
25
26
	/**
27
	 * @param string                      $fileAfter
28
	 * @param \PhpParser\Node\Stmt\Trait_ $traitAfter
29
	 */
30
	public function __construct($fileAfter, Trait_ $traitAfter)
31
	{
32
		$this->fileAfter = $fileAfter;
33
		$this->traitAfter = $traitAfter;
34
	}
35
36
	/**
37
	 * @return string
38
	 */
39
	public function getLocation()
40
	{
41
		return $this->fileAfter;
42
	}
43
44
	/**
45
	 * @return int
46
	 */
47
	public function getLine()
48
	{
49
		return $this->traitAfter->getLine();
50
	}
51
52
	/**
53
	 * @return string
54
	 */
55
	public function getTarget()
56
	{
57
		return PTrait::getFullyQualifiedName($this->traitAfter);
58
	}
59
}
60