You are here

public function MissingTargetDefinition::isUnique in Feeds 8.3

Retuns whether a property is unique.

Parameters

string $property: The property to check.

Return value

bool Returns true if the property is unique, and false if not.

Overrides TargetDefinitionInterface::isUnique

File

src/MissingTargetDefinition.php, line 69

Class

MissingTargetDefinition
Definition for a missing target.

Namespace

Drupal\feeds

Code

public function isUnique($property) {
  return FALSE;
}