Page MenuHomec4science

ConduitConstantDescription.php
No OneTemporary

File Metadata

Created
Mon, May 20, 09:39

ConduitConstantDescription.php

<?php
final class ConduitConstantDescription extends Phobject {
private $key;
private $value;
public function setKey($key) {
$this->key = $key;
return $this;
}
public function getKey() {
return $this->key;
}
public function setValue($value) {
$this->value = $value;
return $this;
}
public function getValue() {
return $this->value;
}
}

Event Timeline