You are here

public function TargetDefinition::setDescription in Feeds 8.3

Sets the target definition description.

Parameters

string $description: The description.

Return value

$this

File

src/TargetDefinition.php, line 95

Class

TargetDefinition
A generic target definition.

Namespace

Drupal\feeds

Code

public function setDescription($description) {
  $this->description = $description;
  return $this;
}