23 lines
418 B
Plaintext
23 lines
418 B
Plaintext
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Symfony\Component\Validator
|
|
{
|
|
class GroupSequence
|
|
{
|
|
}
|
|
|
|
interface ConstraintViolationInterface
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @extends \Traversable<int, ConstraintViolationInterface>
|
|
* @extends \ArrayAccess<int, ConstraintViolationInterface>
|
|
*/
|
|
interface ConstraintViolationListInterface extends \Traversable, \Countable, \ArrayAccess
|
|
{
|
|
}
|
|
}
|