You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
353B

  1. <?php
  2. namespace Lc\CaracoleBundle\Solver\Statistic;
  3. class StatisticSolver
  4. {
  5. const INTERVAL_DAY = 'D';
  6. const INTERVAL_WEEK = 'W';
  7. const INTERVAL_MONTH = 'M';
  8. public function getIntervalChoices()
  9. {
  10. return [
  11. self::INTERVAL_DAY,
  12. self::INTERVAL_WEEK,
  13. self::INTERVAL_MONTH
  14. ];
  15. }
  16. }