BuilderInterface.php 736 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /*
  3. * This file is part of the Sonata package.
  4. *
  5. * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Sonata\AdminBundle\Builder;
  11. use Sonata\AdminBundle\Admin\FieldDescriptionInterface;
  12. use Sonata\AdminBundle\Admin\AdminInterface;
  13. interface BuilderInterface
  14. {
  15. /**
  16. *
  17. * @param \Sonata\AdminBundle\Admin\AdminInterface $admin
  18. * @param \Sonata\AdminBundle\Admin\FieldDescriptionInterface $fieldDescription
  19. *
  20. * @return void
  21. */
  22. public function fixFieldDescription(AdminInterface $admin, FieldDescriptionInterface $fieldDescription);
  23. }