Ouzo\Config::getValue PHP Method

getValue() public static method

If value does not exist it will return empty array.
public static getValue ( ) : mixed
return mixed
    public static function getValue()
    {
        return self::getInstance()->getValue(func_get_args());
    }

Usage Example

Example #1
0
 public static function trace($query, $params, $function)
 {
     if (Config::getValue('debug')) {
         return self::traceNoCheck($query, $params, $function);
     }
     return $function();
 }
All Usage Examples Of Ouzo\Config::getValue