EmicoEcommerce/Magento2Tweakwise

View on GitHub
Model/Client/Response/Catalog/Recommendation/OptionsResponse.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 * Tweakwise (https://www.tweakwise.com/) - All Rights Reserved
 *
 * @copyright Copyright (c) 2017-2022 Tweakwise.com B.V. (https://www.tweakwise.com)
 * @license   http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
 */

namespace Tweakwise\Magento2Tweakwise\Model\Client\Response\Catalog\Recommendation;

use Tweakwise\Magento2Tweakwise\Model\Client\Response;
use Tweakwise\Magento2Tweakwise\Model\Client\Type\Recommendation\OptionType;

class OptionsResponse extends Response
{
    /**
     * @param OptionType[]|array[] $options
     * @return $this
     */
    public function setRecommendations(array $options)
    {
        $templates = $this->normalizeArray($options, 'recommendation');

        $values = [];
        foreach ($templates as $value) {
            if (!$value instanceof OptionType) {
                $value = new OptionType($value);
            }

            $values[] = $value;
        }

        $this->data['recommendations'] = $values;
        return $this;
    }
}