Page MenuHomePhorge

DiffusionGitWireProtocolRef.php
No OneTemporary

Size
753 B
Referenced Files
None
Subscribers
None

DiffusionGitWireProtocolRef.php

<?php
final class DiffusionGitWireProtocolRef
extends Phobject {
private $name;
private $hash;
private $isShallow;
public function setName($name) {
$this->name = $name;
return $this;
}
public function getName() {
return $this->name;
}
public function setHash($hash) {
$this->hash = $hash;
return $this;
}
public function getHash() {
return $this->hash;
}
public function setIsShallow($is_shallow) {
$this->isShallow = $is_shallow;
return $this;
}
public function getIsShallow() {
return $this->isShallow;
}
public function newSortVector() {
return id(new PhutilSortVector())
->addInt((int)$this->getIsShallow())
->addString((string)$this->getName());
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, May 5, 8:12 PM (1 d, 20 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
73425
Default Alt Text
DiffusionGitWireProtocolRef.php (753 B)

Event Timeline