You are here

interface ParameterInterface in TMGMT Translator Smartling 8.3

Same name and namespace in other branches
  1. 8.4 vendor/smartling/api-sdk-php/src/Parameters/ParameterInterface.php \Smartling\Parameters\ParameterInterface
  2. 8.2 api-sdk-php/src/Parameters/ParameterInterface.php \Smartling\Parameters\ParameterInterface
  3. 8.2 vendor/smartling/api-sdk-php/src/Parameters/ParameterInterface.php \Smartling\Parameters\ParameterInterface

Interface ParameterInterface

@package Smartling\Params

Hierarchy

Expanded class hierarchy of ParameterInterface

All classes that implement ParameterInterface

1 file declares its use of ParameterInterface
FileApi.php in vendor/smartling/api-sdk-php/src/File/FileApi.php

File

vendor/smartling/api-sdk-php/src/Parameters/ParameterInterface.php, line 10

Namespace

Smartling\Parameters
View source
interface ParameterInterface {

  /**
   * Returns associative array with key => value pairs of set params
   *
   * @return array
   */
  public function exportToArray();

  /**
   * @param string $key
   * @param mixed $value
   *
   * @return void
   */
  public function set($key, $value);

}

Members

Namesort descending Modifiers Type Description Overrides
ParameterInterface::exportToArray public function Returns associative array with key => value pairs of set params 1
ParameterInterface::set public function 1