Path: blob/master/src/applications/files/diff/PhabricatorDocumentEngineBlock.php
12242 views
<?php12final class PhabricatorDocumentEngineBlock3extends Phobject {45private $blockKey;6private $content;7private $differenceHash;8private $differenceType;9private $isVisible;1011public function setContent($content) {12$this->content = $content;13return $this;14}1516public function getContent() {17return $this->content;18}1920public function setBlockKey($block_key) {21$this->blockKey = $block_key;22return $this;23}2425public function getBlockKey() {26return $this->blockKey;27}2829public function setDifferenceHash($difference_hash) {30$this->differenceHash = $difference_hash;31return $this;32}3334public function getDifferenceHash() {35return $this->differenceHash;36}3738public function setDifferenceType($difference_type) {39$this->differenceType = $difference_type;40return $this;41}4243public function getDifferenceType() {44return $this->differenceType;45}4647public function setIsVisible($is_visible) {48$this->isVisible = $is_visible;49return $this;50}5152public function getIsVisible() {53return $this->isVisible;54}5556}575859