mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-07 15:59:02 +00:00
13 lines
160 B
PHP
13 lines
160 B
PHP
|
<?php
|
||
|
trait InDev {
|
||
|
protected $dev;
|
||
|
|
||
|
function inDev() {
|
||
|
return ($this->dev == 1);
|
||
|
}
|
||
|
|
||
|
function getDev() {
|
||
|
return $this->dev;
|
||
|
}
|
||
|
}
|
||
|
?>
|