Skip to content

Commit d8313ec

Browse files
ossinkineondrejmirtes
authored andcommitted
Add stub for ConstraintViolationListInterface
1 parent 2f2e8a3 commit d8313ec

3 files changed

+19
-0
lines changed

extension.neon

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ parameters:
66
stubFiles:
77
- stubs/ChoiceLoaderInterface.stub
88
- stubs/Constraint.stub
9+
- stubs/ConstraintViolationInterface.stub
10+
- stubs/ConstraintViolationListInterface.stub
911
- stubs/ContainerBuilder.stub
1012
- stubs/ContextAwareDecoderInterface.stub
1113
- stubs/ContextAwareDenormalizerInterface.stub
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
namespace Symfony\Component\Validator;
4+
5+
interface ConstraintViolationInterface
6+
{
7+
}
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)