DIR:/usr/local/cwpsrv/var/services/roundcube/plugins/libkolab/vendor/Caxy/HtmlDiff/ |
Current File : //usr/local/cwpsrv/var/services/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; } } |