Skip to content

Commit 40dea0d

Browse files
committed
Update stubs
1 parent 4cd1da7 commit 40dea0d

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

Php8StubsMap.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2854,6 +2854,8 @@ public function __construct(int $phpVersionId)
28542854
$classes = \array_merge($classes, [
28552855
'curlsharepersistenthandle' => 'stubs/ext/curl/CurlSharePersistentHandle.php',
28562856
'delayedtargetvalidation' => 'stubs/Zend/DelayedTargetValidation.php',
2857+
'filter\\filterexception' => 'stubs/ext/filter/Filter/FilterException.php',
2858+
'filter\\filterfailedexception' => 'stubs/ext/filter/Filter/FilterFailedException.php',
28572859
'intllistformatter' => 'stubs/ext/intl/listformatter/IntlListFormatter.php',
28582860
'nodiscard' => 'stubs/Zend/NoDiscard.php',
28592861
'uri\\invaliduriexception' => 'stubs/ext/uri/Uri/InvalidUriException.php',
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
namespace Filter;
4+
5+
#[\Since('8.5')]
6+
class FilterException extends \Exception
7+
{
8+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
namespace Filter;
4+
5+
#[\Since('8.5')]
6+
class FilterFailedException extends \Filter\FilterException
7+
{
8+
}

0 commit comments

Comments
 (0)