FieldGroupInterface.php 632 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace Symfony\Component\Form;
  3. /*
  4. * This file is part of the Symfony framework.
  5. *
  6. * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
  7. *
  8. * This source file is subject to the MIT license that is bundled
  9. * with this source code in the file LICENSE.
  10. */
  11. /**
  12. * A field group bundling multiple form fields
  13. *
  14. * @author Bernhard Schussek <bernhard.schussek@symfony-project.com>
  15. */
  16. interface FieldGroupInterface extends FieldInterface, \ArrayAccess, \Traversable, \Countable
  17. {
  18. /**
  19. * Returns whether the Field instance really is a group
  20. * @return bool
  21. */
  22. public function isGroup();
  23. }