1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- namespace Symfony\Component\Validator\Mapping;
- class TraversalStrategy
- {
-
- const IMPLICIT = 1;
-
- const NONE = 2;
-
- const TRAVERSE = 4;
-
- const STOP_RECURSION = 8;
-
- private function __construct()
- {
- }
- }
|