Ejemplo n.º 1
0
 public function Add(ReportCommandBuilder $builder)
 {
     if ($this->range != self::ALL_TIME) {
         $builder->Within($this->start, $this->end);
     }
 }
Ejemplo n.º 2
0
 private function LimitToMonth(ReportCommandBuilder $builder)
 {
     $builder->Within($this->monthRange->Start(), $this->monthRange->End());
     return $builder;
 }