Skip to content

Commit 1ed89cf

Browse files
committed
Add stub for ConstraintViolationListInterface
1 parent 2f2e8a3 commit 1ed89cf

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

extension.neon

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ parameters:
66
stubFiles:
77
- stubs/ChoiceLoaderInterface.stub
88
- stubs/Constraint.stub
9+
- stubs/ConstraintViolationListInterface.stub
910
- stubs/ContainerBuilder.stub
1011
- stubs/ContextAwareDecoderInterface.stub
1112
- stubs/ContextAwareDenormalizerInterface.stub
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
namespace Symfony\Component\Validator;
4+
5+
/**
6+
* @extends \Traversable<int, ConstraintViolationInterface>
7+
*/
8+
interface ConstraintViolationListInterface extends \Traversable
9+
{
10+
}

0 commit comments

Comments
 (0)