public function WebformCommandsBase::drush_move_dir in Webform 6.x
Same name and namespace in other branches
- 8.5 src/Commands/WebformCommandsBase.php \Drupal\webform\Commands\WebformCommandsBase::drush_move_dir()
File
- src/
Commands/ WebformCommandsBase.php, line 103
Class
- WebformCommandsBase
- Base class for Webform commands for Drush 9.x.
Namespace
Drupal\webform\CommandsCode
public function drush_move_dir($src, $dest) {
$fs = new Filesystem();
$fs
->rename($src, $dest, TRUE);
return TRUE;
}