You are here

public function MissingTargetDefinition::hasProperty in Feeds 8.3

Returns whether this target has a given property.

Parameters

string $property: The property to check for.

Return value

bool Returns true if the property exists, and false if not.

Overrides TargetDefinitionInterface::hasProperty

File

src/MissingTargetDefinition.php, line 41

Class

MissingTargetDefinition
Definition for a missing target.

Namespace

Drupal\feeds

Code

public function hasProperty($property) {
  return TRUE;
}