You are here

BaseInterface.php in DRD Agent 4.0.x

File

src/Agent/Remote/BaseInterface.php
View source
<?php

namespace Drupal\drd_agent\Agent\Remote;


/**
 * Interface for remote classes.
 */
interface BaseInterface {

  /**
   * Collect the security review results.
   *
   * @return array
   *   List of all the security review results.
   */
  public function collect() : array;

}

Interfaces

Namesort descending Description
BaseInterface Interface for remote classes.