PageRenderTime 49ms CodeModel.GetById 24ms RepoModel.GetById 1ms app.codeStats 0ms

/macro/src/filters/strtoupper.filter.php

http://github.com/limb-php-framework/limb
PHP | 21 lines | 5 code | 1 blank | 15 comment | 0 complexity | c8c7c90a289a89aed8dc813fda0f396c MD5 | raw file
Possible License(s): LGPL-2.1, AGPL-3.0, MPL-2.0-no-copyleft-exception, GPL-2.0
  1. <?php
  2. /*
  3. * Limb PHP Framework
  4. *
  5. * @link http://limb-project.com
  6. * @copyright Copyright &copy; 2004-2009 BIT(http://bit-creative.com)
  7. * @license LGPL http://www.gnu.org/copyleft/lesser.html
  8. */
  9. /**
  10. * class lmbMacroStrToUpperFilter.
  11. *
  12. * @filter strtoupper
  13. * @aliases uppercase
  14. * @package macro
  15. * @version $Id$
  16. */
  17. class lmbMacroStrToUpperFilter extends lmbMacroFunctionBasedFilter
  18. {
  19. protected $function = 'strtoupper';
  20. }