Fix bug in style changes for the Use cases on the live site.
[yaffs-website] / vendor / symfony / validator / GroupSequenceProviderInterface.php
1 <?php
2
3 /*
4  * This file is part of the Symfony package.
5  *
6  * (c) Fabien Potencier <fabien@symfony.com>
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Symfony\Component\Validator;
13
14 /**
15  * Defines the interface for a group sequence provider.
16  */
17 interface GroupSequenceProviderInterface
18 {
19     /**
20      * Returns which validation groups should be used for a certain state
21      * of the object.
22      *
23      * @return array An array of validation groups
24      */
25     public function getGroupSequence();
26 }