Page MenuHomePhorge

Operation.php
No OneTemporary

Size
456 B
Referenced Files
None
Subscribers
None

Operation.php

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

File Metadata

Mime Type
text/x-php
Expires
Fri, Jun 12, 3:30 AM (1 d, 9 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
851204
Default Alt Text
Operation.php (456 B)

Event Timeline