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
For BC reasons a __call method could be added, that would forward calls to unknown methods to the corresponding classes.
The properties themselves would be proxy classes (a lightweight proxy class is always present, but a heavy underlying class object is created only when needed).
The text was updated successfully, but these errors were encountered:
The Jira API is huge (lots of API calls). With time we could end up having all of them present in the
Api
class, which would produce a huge class.Proposing to create the separate classes based on API call groups in Jira REST API itself and move corresponding calls there.
For example:
For BC reasons a
__call
method could be added, that would forward calls to unknown methods to the corresponding classes.The properties themselves would be proxy classes (a lightweight proxy class is always present, but a heavy underlying class object is created only when needed).
The text was updated successfully, but these errors were encountered: