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