xrdebug / php

Official PHP client library for xrDebug
https://xrdebug.com
Apache License 2.0
222 stars 6 forks source link

Add configuration shortcut function #79

Closed rodber closed 1 year ago

rodber commented 1 year ago

https://xr-docs.chevere.org/configuration/

From this:

new XrInstance(
    new Xr(
        isEnabled: $isEnabled,
        isHttps: $isEnabled,
        host: $host,
        port: $port,
        key: $key
    )
);

To this:

XrConfig(
     isEnabled: $isEnabled,
     isHttps: $isHttps,
     host: $host,
     port: $port,
     key: $key
);