khanat-opennel-code/code/web/app/app_achievements/class/InDev_trait.php
SirCotare ad0bbe922f #1470 base class update; AVL trees added; some cleanup
--HG--
branch : gsoc2012-achievements
2012-07-01 20:04:01 +02:00

13 lines
No EOL
160 B
PHP

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