mirror of
https://github.com/egulias/EmailValidator.git
synced 2026-08-31 12:40:28 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c9be65c290 | |||
| d164dab97f | |||
| e67aa7abef | |||
| d3a88ef157 |
@@ -20,8 +20,9 @@ jobs:
|
||||
run: mkdir -p build/coverage
|
||||
|
||||
- name: Download clover.xml artifact
|
||||
uses: actions/download-artifact@v3
|
||||
uses: dawidd6/action-download-artifact@v7
|
||||
with:
|
||||
workflow: unit-tests
|
||||
name: clover.xml
|
||||
path: build/coverage
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ class DNSGetRecordWrapper
|
||||
// A workaround to fix https://bugs.php.net/bug.php?id=73149
|
||||
set_error_handler(
|
||||
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 {
|
||||
|
||||
Reference in New Issue
Block a user