You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 24, 2023. It is now read-only.
This class is an abstract class designed to act a wrapper for the HTTPFul PHP REST Client. It’s intended function is to provide a abstracted programmatic interface for use by the idxApi class to make the actual calls to the IDX Broker API. It has two primary purposes, the first is to reduce the need for creating repeatable and redundant code within blocks or other features that need to make calls to the IDX API, the second is to have a single set of code that acts as a middle-man between the idxApi and the REST client library. This enables changes to be made as needed (such as API changes or changing the REST client library) without having to make changes to the idxApi and or every block or feature independently, making the package more maintainable.