Page MenuHomePhorge

Match.php
No OneTemporary

Authored By
Unknown
Size
488 B
Referenced Files
None
Subscribers
None

Match.php

<?php
namespace Caxy\HtmlDiff;
class Match
{
public $startInOld;
public $startInNew;
public $size;
public function __construct($startInOld, $startInNew, $size)
{
$this->startInOld = $startInOld;
$this->startInNew = $startInNew;
$this->size = $size;
}
public function endInOld()
{
return $this->startInOld + $this->size;
}
public function endInNew()
{
return $this->startInNew + $this->size;
}
}

File Metadata

Mime Type
text/x-php
Expires
Sat, Apr 4, 3:27 AM (1 d, 20 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
36/ea/ffbbc74cf68f40824fc2422d8c16
Default Alt Text
Match.php (488 B)

Event Timeline