true, public static $defaults = [ ]; /** @return bool */ function isSupported($feature) { if (!array_key_exists($feature, self::$defaults)) { throw new \RuntimeException("Unknown feature '$feature'"); } return self::$defaults[$feature]; } }