You are here

ReloadCommand.php in Flexiform 8

File

src/Ajax/ReloadCommand.php
View source
<?php

namespace Drupal\flexiform\Ajax;

use Drupal\Core\Ajax\CommandInterface;

/**
 * Provides the reload AJAX command.
 */
class ReloadCommand implements CommandInterface {

  /**
   * {@inheritdoc}
   */
  public function render() {
    return [
      'command' => 'reload',
    ];
  }

}

Classes

Namesort descending Description
ReloadCommand Provides the reload AJAX command.