Your IP : 216.73.216.57


Current Path : /home/eolienneia/www/templates/yootheme/vendor/yootheme/theme-settings/src/
Upload File :
Current File : /home/eolienneia/www/templates/yootheme/vendor/yootheme/theme-settings/src/SettingsController.php

<?php

namespace YOOtheme\Theme;

use YOOtheme\Http\Request;
use YOOtheme\Http\Response;

class SettingsController
{
    public static function import(Request $request, Response $response, Updater $updater)
    {
        $config = $request('config');

        return $response->withJson($updater->update($config, []));
    }
}