public function DeleteContent::sayHello in Drush Delete All 8.2
Same name and namespace in other branches
- 3.x src/DeleteContent.php \Drupal\drush_delete\DeleteContent::sayHello()
File
- src/
DeleteContent.php, line 13
Class
Namespace
Drupal\drush_deleteCode
public function sayHello($name = '') {
if (empty($name)) {
return $this->say_something;
}
else {
return "Hello " . $name . "!";
}
}