Voodoo\Core\Config::get PHP Method

get() public method

Access value of an array with dot notation
public get ( type $dotNotation = "", type $emptyValue = null ) : Mix
$dotNotation type - the key. ie: Key.Field1
$emptyValue type - Use this value if empty
return Mix ie self::get("QA.UpVoteQuestion"); Will return the value of [QA][UpVoteQuestion]
    public function get($dotNotation = "", $emptyValue = null)
    {
        return Helpers::getArrayDotNotationValue($this->toArray(), $dotNotation, $emptyValue);
    }