Files
cachet-docker/app/models/Incident.php
2014-11-16 23:34:46 +00:00

13 lines
256 B
PHP

<?php
class Incident extends Eloquent {
public function getHumanStatusAttribute() {
switch ($this->status) {
case 1: return 'Investigating';
case 2: return 'Identified';
case 3: return 'Watching';
case 4: return 'Fixed';
}
}
}