You are here

public function PhoneInternationalCommands::drushMkdir in International Phone 3.x

Create directory.

Parameters

string $path: The make directory path.

1 call to PhoneInternationalCommands::drushMkdir()
PhoneInternationalCommands::drushTarballExtract in src/Commands/PhoneInternationalCommands.php
Drush Tarball Extract.

File

src/Commands/PhoneInternationalCommands.php, line 177

Class

PhoneInternationalCommands
A Drush commandfile.

Namespace

Drupal\phone_international\Commands

Code

public function drushMkdir($path) {
  $fs = new Filesystem();
  $fs
    ->mkdir($path);
}