fXmlRpc\Value\Base64::getDecoded PHP Method

getDecoded() public method

public getDecoded ( )
    public function getDecoded()
    {
        if ($this->decoded === null) {
            $this->decoded = base64_decode($this->encoded);
        }
        return $this->decoded;
    }