You are here

public function TargetDefinition::setLabel in Feeds 8.3

Sets the target definition label.

Parameters

string $label: The label.

Return value

$this

File

src/TargetDefinition.php, line 75

Class

TargetDefinition
A generic target definition.

Namespace

Drupal\feeds

Code

public function setLabel($label) {
  $this->label = $label;
  return $this;
}