Viewing File: /usr/local/cpanel/base/3rdparty/roundcube/plugins/libkolab/vendor/Caxy/HtmlDiff/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;
    }
}
Back to Directory File Manager