Files
php-flasher/Config/ConfigInterface.php
T
2020-12-02 00:57:12 +01:00

17 lines
286 B
PHP

<?php
namespace Flasher\Prime\Config;
interface ConfigInterface
{
/**
* Returns an attribute.
*
* @param string $key
* @param mixed $default The default value if not found.
*
* @return mixed
*/
public function get($key, $default = null);
}