Exemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 public function compare(FieldDescriptorInterface $other)
 {
     if (!$other instanceof self) {
         return false;
     }
     return $this->getEntityName() === $other->getEntityName() && $this->getFieldName() === $other->getFieldName();
 }