khanat-opennel-code/code/web/app/app_achievements/class/InDev_trait.php

13 lines
No EOL
160 B
PHP

<?php
trait InDev {
protected $dev;
function inDev() {
return ($this->dev == 1);
}
function getDev() {
return $this->dev;
}
}
?>