Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/diffusion/exception/DiffusionRefNotFoundException.php
12242 views
1
<?php
2
3
final class DiffusionRefNotFoundException extends Exception {
4
5
private $ref;
6
7
public function setRef($ref) {
8
$this->ref = $ref;
9
return $this;
10
}
11
12
public function getRef() {
13
return $this->ref;
14
}
15
16
}
17
18