You are here

Ping.php in DRD Agent 8.3

Same filename and directory in other branches
  1. 4.0.x src/Agent/Action/Ping.php

File

src/Agent/Action/Ping.php
View source
<?php

namespace Drupal\drd_agent\Agent\Action;


/**
 * Provides a 'Ping' code.
 */
class Ping extends Base {

  /**
   * {@inheritdoc}
   */
  public function execute() {
    return [
      'data' => 'pong',
    ];
  }

}

Classes

Namesort descending Description
Ping Provides a 'Ping' code.