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\feedsCode
public function setDescription($description) {
$this->description = $description;
return $this;
}