mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 18:32:41 +01:00
27 lines
447 B
PHP
27 lines
447 B
PHP
|
<?php
|
||
|
|
||
|
final class DiffusionCommitHash extends Phobject {
|
||
|
|
||
|
private $hashType;
|
||
|
private $hashValue;
|
||
|
|
||
|
public function setHashValue($hash_value) {
|
||
|
$this->hashValue = $hash_value;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getHashValue() {
|
||
|
return $this->hashValue;
|
||
|
}
|
||
|
|
||
|
public function setHashType($hash_type) {
|
||
|
$this->hashType = $hash_type;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getHashType() {
|
||
|
return $this->hashType;
|
||
|
}
|
||
|
|
||
|
}
|