geysir-8.x-1.2/src/Ajax/GeysirReattachBehaviors.php
src/Ajax/GeysirReattachBehaviors.php
<?php
namespace Drupal\geysir\Ajax;
use Drupal\Core\Ajax\CommandInterface;
/**
* Defines an AJAX command that closes the current active dialog.
*
* @ingroup ajax
*/
class GeysirReattachBehaviors implements CommandInterface {
/**
* {@inheritdoc}
*/
public function render() {
return [
'command' => 'geysirReattachBehaviors',
];
}
}
