Added missing annotation

This commit is contained in:
phecho
2015-12-25 19:13:28 +08:00
parent d1152d5d3e
commit 2905c1339d

View File

@@ -20,7 +20,18 @@ class Metric extends Model implements HasPresenter
{
use ValidatingTrait;
/**
* The calculation type of sum.
*
* @var int
*/
const CALC_SUM = 0;
/**
* The calculation type of average.
*
* @var int
*/
const CALC_AVG = 1;
/**