Merge pull request #1299 from phecho/fix-annotation

Added missing annotation
This commit is contained in:
Graham Campbell
2015-12-25 11:48:10 +00:00

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;
/**