Skip to content

Commit 84df1e3

Browse files
author
Kirill Nesmeyanov
committed
Fix mapper "throws" docblocks
1 parent cb1170b commit 84df1e3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Mapper.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
use JetBrains\PhpStorm\Language;
88
use TypeLang\Mapper\Exception\Definition\TypeNotFoundException;
9-
use TypeLang\Mapper\Exception\Mapping\RuntimeExceptionInterface;
9+
use TypeLang\Mapper\Exception\Mapping\RuntimeException;
1010
use TypeLang\Mapper\Platform\PlatformInterface;
1111
use TypeLang\Mapper\Platform\StandardPlatform;
1212
use TypeLang\Mapper\Runtime\Configuration;
@@ -110,7 +110,7 @@ public function getParser(): TypeParserFacadeInterface
110110
}
111111

112112
/**
113-
* @throws RuntimeExceptionInterface
113+
* @throws RuntimeException
114114
* @throws TypeNotFoundException
115115
* @throws \Throwable
116116
*/
@@ -143,7 +143,7 @@ public function isNormalizable(mixed $value, #[Language('PHP')] ?string $type =
143143
}
144144

145145
/**
146-
* @throws RuntimeExceptionInterface
146+
* @throws RuntimeException
147147
* @throws TypeNotFoundException
148148
* @throws \Throwable
149149
*/

0 commit comments

Comments
 (0)