Skip to content

Configuration

Sunel Tr edited this page Jul 25, 2018 · 4 revisions

ConfigResolver Contract

interface ConfigResolver
{
    /**
     * Get the specified configuration value.
     *
     * @param  string  $key
     * @param  mixed   $default
     * @return mixed
     */
    public function get($key, $default = null);
}
Clone this wiki locally