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;
}
Removes the
HasDelay
trait definition on the abstract classConnector
, which is already provided by theHasRequestProperties
trait that is in use on this class, making the definition redundant, so it can be safely removed.As below: