<?php
/**
*
* Copyright © 2016 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Setup\Module\Di\Compiler\Config;
interface WriterInterface
{
/**
* Writes config in storage
*
* @param string $key
* @param array $config
* @return void
*/
public function write($key, array $config);
}