You are here

ParameterInterface.php in TMGMT Translator Smartling 8.2

File

api-sdk-php/src/Parameters/ParameterInterface.php
View source
<?php

namespace Smartling\Parameters;


/**
 * Interface ParameterInterface
 *
 * @package Smartling\Params
 */
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);

}

Interfaces

Namesort descending Description
ParameterInterface Interface ParameterInterface