Skip to content

Commit ba5c872

Browse files
freezy-skawjudd
authored andcommitted
Fix Incident status constant (#8)
1 parent 2da8be0 commit ba5c872

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Incident.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class Incident extends BaseApiComponent
1212

1313
const SCHEDULED = 0;
1414
const INVESTIGATING = 1;
15-
const IDENTIFIED = 1;
15+
const IDENTIFIED = 2;
1616
const WATCHING = 3;
1717
const FIXED = 4;
1818

@@ -90,4 +90,4 @@ public function addVariable($key, $value)
9090
$this->_metadata['template']['variables'][$key] = $value;
9191
return $this;
9292
}
93-
}
93+
}

0 commit comments

Comments
 (0)