0 follower

Interface Yiisoft\Config\ConfigInterface

Implemented byYiisoft\Config\Config

Provides methods for loading configuration of the groups.

Public Methods

Hide inherited methods

Method Description Defined By
get() Returns the configuration of the group. Yiisoft\Config\ConfigInterface
has() Checks whether the configuration group exists. Yiisoft\Config\ConfigInterface

Method Details

Hide inherited methods

get() public abstract method

Returns the configuration of the group.

public abstract array get ( string $group )
$group string

The configuration group name.

return array

The configuration of the group.

                public function get(string $group): array;

            
has() public abstract method

Checks whether the configuration group exists.

public abstract boolean has ( string $group )
$group string

The configuration group name.

return boolean

Whether the configuration group exists.

                public function has(string $group): bool;