/**
  * {@inheritdoc}
  */
 public function expired()
 {
     if (null !== $this->package && $this->package->isInitial()) {
         return false;
     }
     return null === $this->expiresAt || $this->expiresAt < new \DateTime();
 }