PageRenderTime 39ms CodeModel.GetById 11ms RepoModel.GetById 1ms app.codeStats 0ms

/library/Zend/InputFilter/InputFilterAwareInterface.php

https://bitbucket.org/aboozar/zf2
PHP | 33 lines | 7 code | 3 blank | 23 comment | 0 complexity | ffd8fe94f66c0d52e9a92fe5b9941962 MD5 | raw file
Possible License(s): BSD-3-Clause
  1. <?php
  2. /**
  3. * Zend Framework (http://framework.zend.com/)
  4. *
  5. * @link http://github.com/zendframework/zf2 for the canonical source repository
  6. * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
  7. * @license http://framework.zend.com/license/new-bsd New BSD License
  8. * @package Zend_InputFilter
  9. */
  10. namespace Zend\InputFilter;
  11. /**
  12. * @category Zend
  13. * @package Zend_InputFilter
  14. */
  15. interface InputFilterAwareInterface
  16. {
  17. /**
  18. * Set input filter
  19. *
  20. * @param InputFilterInterface $inputFilter
  21. * @return InputFilterAwareInterface
  22. */
  23. public function setInputFilter(InputFilterInterface $inputFilter);
  24. /**
  25. * Retrieve input filter
  26. *
  27. * @return InputFilterInterface
  28. */
  29. public function getInputFilter();
  30. }