FilterFactoryInterface.php 636 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /*
  3. * This file is part of the Sonata Project 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\Filter;
  11. /**
  12. * Interface FilterFactoryInterface.
  13. *
  14. * @author Thomas Rabaix <thomas.rabaix@sonata-project.org>
  15. */
  16. interface FilterFactoryInterface
  17. {
  18. /**
  19. * @param string $name
  20. * @param string $type
  21. * @param array $options
  22. *
  23. * @return mixed
  24. */
  25. public function create($name, $type, array $options = array());
  26. }