File "Base64.php"

Full Path: /home2/sdektunc/cepali.edu.mx/wp-content/plugins/smart-slider-3/Nextend/Framework/Misc/Base64.php
File size: 388 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Nextend\Framework\Misc;

use Nextend\Framework\Misc\Base64\Decoder;
use Nextend\Framework\Misc\Base64\Encoder;

class Base64 {

    /**
     * @param $data
     *
     * @return string
     */
    public static function decode($data) {
        return Decoder::decode($data);
    }

    public static function encode($data) {
        return Encoder::encode($data);
    }
}