| Current Path : /home/jeromecohp/www/plugins/system/yooessentials/modules/core/src/Config/ |
| Current File : /home/jeromecohp/www/plugins/system/yooessentials/modules/core/src/Config/ConfigInterface.php |
<?php
/**
* @package Essentials YOOtheme Pro (Freemium) 2.0.19 build 1026.0920
* @author ZOOlanders https://www.zoolanders.com
* @copyright Copyright (C) Joolanders, SL
* @license http://www.gnu.org/licenses/gpl.html GNU/GPL
*/
namespace ZOOlanders\YOOessentials\Config;
interface ConfigInterface
{
public function has(string $key): bool;
public function get(string $key, $default = null);
public function set(string $key, $value);
public function del(string $key);
public function add(array $values);
public function replace(array $values);
public function toArray(): array;
}