*/ class EventResult implements JsonSerializable { private $changes; private $version; private $invokedBy; function __construct($changes, $version) { $this->changes = $changes; $this->version = $version; } public function getChanges() { return $this->changes; } public function getVersion() { return $this->version; } public function setChanges($changes) { $this->changes = $changes; } public function setVersion($version) { $this->version = $version; } public function getInvokedBy() { return $this->invokedBy; } public function setInvokedBy($invokedBy) { $this->invokedBy = $invokedBy; } public function jsonSerialize() { return [ 'changes' => $this->changes, 'version' => $this->version, 'invokedBy' => $this->invokedBy, ]; } } WebSVN - freenet-router - Blame - Rev 2 - /trunk/freenet-router/var/www/freenet-router/Framework/Libraries/UI/Model/EventResult.php
  jablonka.czprosek.czf

freenet-router

Subversion Repositories:
[/] [trunk/] [freenet-router/] [var/] [www/] [freenet-router/] [Framework/] [Libraries/] [UI/] [Model/] [EventResult.php] - Blame information for rev 2

 

Line No. Rev Author Line

Powered by WebSVN 2.2.1