entity_reference_tree-8.x-1.x-dev/src/Ajax/CloseEntityReferenceTreeModalDialogCommand.php
src/Ajax/CloseEntityReferenceTreeModalDialogCommand.php
<?php
namespace Drupal\entity_reference_tree\Ajax;
use Drupal\Core\Ajax\CloseModalDialogCommand;
class CloseEntityReferenceTreeModalDialogCommand extends CloseModalDialogCommand {
/**
* {@inheritdoc}
*/
public function __construct($persist = FALSE) {
parent::__construct($persist);
$this->selector = '#entity-reference-tree-modal';
}
}
