mirror of
https://github.com/egulias/EmailValidator.git
synced 2026-09-07 00:32:19 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c9be65c290 | |||
| d164dab97f | |||
| e67aa7abef | |||
| d3a88ef157 |
@@ -20,8 +20,9 @@ jobs:
|
|||||||
run: mkdir -p build/coverage
|
run: mkdir -p build/coverage
|
||||||
|
|
||||||
- name: Download clover.xml artifact
|
- name: Download clover.xml artifact
|
||||||
uses: actions/download-artifact@v3
|
uses: dawidd6/action-download-artifact@v7
|
||||||
with:
|
with:
|
||||||
|
workflow: unit-tests
|
||||||
name: clover.xml
|
name: clover.xml
|
||||||
path: build/coverage
|
path: build/coverage
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ class DNSGetRecordWrapper
|
|||||||
// A workaround to fix https://bugs.php.net/bug.php?id=73149
|
// A workaround to fix https://bugs.php.net/bug.php?id=73149
|
||||||
set_error_handler(
|
set_error_handler(
|
||||||
static function (int $errorLevel, string $errorMessage): never {
|
static function (int $errorLevel, string $errorMessage): never {
|
||||||
throw new \RuntimeException("Unable to get DNS record for the host: $errorMessage");
|
throw new \RuntimeException(sprintf('Unable to get DNS record for the host: %s', $errorMessage));
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
try {
|
try {
|
||||||
|
|||||||
Reference in New Issue
Block a user