public function CKEditorMediaEmbedCommands::__construct in CKEditor Media Embed Plugin 8
Constructs CKEditor Media Embed Drush Command object.
Parameters
\Drupal\ckeditor_media_embed\Commands\InstallCommand $installCommand: The CKEditor plugin installation command.
\Drupal\ckeditor_media_embed\Commands\UpdateCommand $updateCommand: The CKEditor plugin update command.
File
- src/
Command/ Drush/ CKEditorMediaEmbedCommands.php, line 37
Class
- CKEditorMediaEmbedCommands
- CKEditor Media Embed Drush command file.
Namespace
Drupal\ckeditor_media_embed\Command\DrushCode
public function __construct(InstallCommand $installCommand, UpdateCommand $updateCommand) {
parent::__construct();
$this->installCommand = $installCommand;
$this->updateCommand = $updateCommand;
}