Code Duplication    Length = 7-8 lines in 2 locations

lib/Caxy/HtmlDiff/Operation.php 1 location

@@ 13-20 (lines=8) @@
10
    public $startInNew;
11
    public $endInNew;
12
13
    public function __construct($action, $startInOld, $endInOld, $startInNew, $endInNew)
14
    {
15
        $this->action = $action;
16
        $this->startInOld = $startInOld;
17
        $this->endInOld = $endInOld;
18
        $this->startInNew = $startInNew;
19
        $this->endInNew = $endInNew;
20
    }
21
}
22

lib/Caxy/HtmlDiff/Table/TableMatch.php 1 location

@@ 12-18 (lines=7) @@
9
    public $endInOld;
10
    public $endInNew;
11
12
    public function __construct($startInOld, $startInNew, $endInOld, $endInNew)
13
    {
14
        $this->startInOld = $startInOld;
15
        $this->startInNew = $startInNew;
16
        $this->endInOld = $endInOld;
17
        $this->endInNew = $endInNew;
18
    }
19
20
    public function getStartInOld()
21
    {