Source of file IArgument.php
Size: 0,608 Bytes - Last Modified: 2019-08-09T18:27:54+00:00
/home/travis/build/zerospam/sdk-framework/src/Request/Arguments/IArgument.php
| 123456789101112131415161718192021222324252627282930313233343536 | <?php/** * Created by PhpStorm. * User: aaflalo * Date: 30/05/18 * Time: 4:23 PM. */namespace ZEROSPAM\Framework\SDK\Request\Arguments; use ZEROSPAM\Framework\SDK\Utils\Contracts\PrimalValued; /** * Interface IArgument * * Argument used in the request * * @package ZEROSPAM\Framework\SDK\Request\Arguments */interface IArgument extends PrimalValued {/** * Key for the argument. * * @return string */public function getKey(): string; /** * Possible Subkey of the argument * * @return string */public function getSubKey(): string; } |