fXmlRpc\Value\Base64::getDecoded PHP Метод

getDecoded() публичный Метод

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