| Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-analytics/Model/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/module-analytics/Model/ConfigInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Analytics\Model;
/**
* Interface for Analytics Config.
*/
interface ConfigInterface
{
/**
* Get config value by key.
*
* @param string|null $key
* @param string|null $default
* @return array
*/
public function get($key = null, $default = null);
}