/**
  * {@inheritdoc}
  */
 public function holdsFor(Context $context)
 {
     if (!$context->containsKey($this->key)) {
         return false;
     }
     $argument = $context->get($this->key);
     return $this->operator->appliesTo($argument);
 }