Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/ipol.sdek/classes/lib/SDEK/Entity/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/ipol.sdek/classes/lib/SDEK/Entity/OptionsInterface.php

<?php


namespace Ipolh\SDEK\SDEK\Entity;


/**
 * Interface OptionsInterface
 * @package Ipolh\SDEK\SDEK
 * gets options - used "fetch",because "get" for getters
 * add specific options with "public function fetch<Option>" for overload
 */
interface OptionsInterface
{
    public static function fetchOption($handle);

    /**
     * @param $option
     * @param $handle
     * @return $this
     *
     * DOESNT sets anything in cms options! Only in container-class!
     */
    public function pushOption($option, $handle);

}