/**
  * @inheritdoc
  *
  * @param int $startedAt
  * @return bool
  */
 public function shouldExpire($startedAt)
 {
     if ($this->descriptor->hasMethod('shouldExpire')) {
         return $this->descriptor->shouldExpire($startedAt);
     }
     return true;
 }