You are here

UpdateFlowchartCommand.php in Business Rules 8

Same filename and directory in other branches
  1. 2.x src/Ajax/UpdateFlowchartCommand.php

File

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

namespace Drupal\business_rules\Ajax;

use Drupal\Core\Ajax\CommandInterface;

/**
 * Ajax command to update flowchart.
 *
 * @package Drupal\business_rules\Ajax
 */
class UpdateFlowchartCommand implements CommandInterface {

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

}

Classes

Namesort descending Description
UpdateFlowchartCommand Ajax command to update flowchart.