You've already forked php-flasher
mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-04-05 20:42:56 +01:00
17 lines
286 B
PHP
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);
|
|
}
|