You are here

class PostcodeAnywhere_Interactive_Find in Coder 8.3.x

Same name and namespace in other branches
  1. 8.3 tests/Drupal/Commenting/FunctionCommentUnitTest.inc \PostcodeAnywhere_Interactive_Find
  2. 8.2 coder_sniffer/Drupal/Test/Commenting/FunctionCommentUnitTest.inc \PostcodeAnywhere_Interactive_Find

Hierarchy

Expanded class hierarchy of PostcodeAnywhere_Interactive_Find

File

tests/Drupal/Commenting/FunctionCommentUnitTest.inc, line 396
Some function comment tests.

View source
class PostcodeAnywhere_Interactive_Find {
  private $UserName;

  //The username associated with the Royal Mail license (not required for click licenses).
  private $Data;

  //Holds the results of the query
  function PostcodeAnywhere_Interactive_Find($Key, $SearchTerm, $PreferredLanguage, $Filter, $UserName) {
    $this->Key = $Key;
    $this->SearchTerm = $SearchTerm;
    $this->PreferredLanguage = $PreferredLanguage;
    $this->Filter = $Filter;
    $this->UserName = $UserName;
  }

}

Members