app\blocks\ConcreptImplementationBlock::setEnvOption PHP 메소드

setEnvOption() 공개 메소드

Set an environment option informations to the block with key value pairing.
public setEnvOption ( string $key, mixed $value )
$key string The identifier key.
$value mixed The value for the key.
    public function setEnvOption($key, $value)
    {
        $this->_envs[$key] = $value;
    }