No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
a4aede4
... +0 ...
813e199
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
60 | 60 | return new ExponentialAsyncDelayRecoverableExceptionHandler; |
|
61 | 61 | } |
|
62 | 62 | ||
63 | + | /** |
|
64 | + | * Gets the asynchronous connection throttle, invoked each time a connector fetches data. |
|
65 | + | * |
|
66 | + | * @return Throttle Asynchronous connection throttle. |
|
67 | + | */ |
|
63 | 68 | final public function getThrottle(): Throttle |
|
64 | 69 | { |
|
65 | 70 | return $this->throttle ?? $this->throttle = new NullThrottle; |
|
66 | 71 | } |
|
67 | 72 | ||
73 | + | /** |
|
74 | + | * Sets the asynchronous connection throttle, invoked each time a connector fetches data. |
|
75 | + | * |
|
76 | + | * @param Throttle $throttle Asynchronous connection throttle. |
|
77 | + | * |
|
78 | + | * @return $this |
|
79 | + | */ |
|
68 | 80 | final public function setThrottle(Throttle $throttle): self |
|
69 | 81 | { |
|
70 | 82 | $this->throttle = $throttle; |
Files | Complexity | Coverage |
---|---|---|
src | ø | 100.00% |
Project Totals (37 files) | 230 | 100.00% |
813e199
a4aede4