krafthaus/bauhaus

View on GitHub
src/KraftHaus/Bauhaus/Util/Value.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace KraftHaus\Bauhaus\Util;

/**
 * This file is part of the KraftHaus Bauhaus package.
 *
 * (c) KraftHaus <hello@krafthaus.nl>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

/**
 * Class Value
 * @package KraftHaus\Bauhaus\Builder
 */
class Value
{

    /**
     * Encode a value based on the strategy
     *
     * @param  string $strategy
     * @param  string $value
     *
     * @access public
     * @return string
     */
    public static function encode($strategy, $value)
    {
        switch ($strategy) {
            case 'explode':
                return implode(',', $value);
            case 'json':
                return json_encode($value);
            case 'serialize':
                return serialize($value);
        }

        return $value;
    }

    /**
     * Decode a value based on the strategy.
     *
     * @param  string $strategy
     * @param  string $value
     *
     * @access public
     * @return array|mixed
     */
    public static function decode($strategy, $value)
    {
        switch ($strategy) {
            case 'explode':
                return explode(',', $value);
            case 'json':
                return json_decode($value);
            case 'serialize':
                return unserialize($value);
        }

        return $value;
    }

}