CustomOptionsResolver.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  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 Symfony\Component\Form\Tests\Fixtures;
  11. use Symfony\Component\OptionsResolver\OptionsResolverInterface;
  12. class CustomOptionsResolver implements OptionsResolverInterface
  13. {
  14. public function setDefaults(array $defaultValues)
  15. {
  16. }
  17. public function replaceDefaults(array $defaultValues)
  18. {
  19. }
  20. public function setOptional(array $optionNames)
  21. {
  22. }
  23. public function setRequired($optionNames)
  24. {
  25. }
  26. public function setAllowedValues($allowedValues)
  27. {
  28. }
  29. public function addAllowedValues($allowedValues)
  30. {
  31. }
  32. public function setAllowedTypes($allowedTypes)
  33. {
  34. }
  35. public function addAllowedTypes($allowedTypes)
  36. {
  37. }
  38. public function setNormalizers(array $normalizers)
  39. {
  40. }
  41. public function isKnown($option)
  42. {
  43. }
  44. public function isRequired($option)
  45. {
  46. }
  47. public function resolve(array $options = array())
  48. {
  49. }
  50. }