saloonphp / saloon

🤠 Build beautiful API integrations and SDKs with Saloon
https://docs.saloon.dev
MIT License
2.07k stars 106 forks source link

Remove Redundant Trait #357

Closed Cbrad24 closed 10 months ago

Cbrad24 commented 10 months ago

Removes the HasDelay trait definition on the abstract class Connector, which is already provided by the HasRequestProperties trait that is in use on this class, making the definition redundant, so it can be safely removed.

As below:

trait HasRequestProperties
{
    use HasHeaders;
    use HasQuery;
    use HasConfig;
    use HasMiddleware;
    use HasDelay;
}