Normalizer.php 576 B

1234567891011121314151617
  1. <?php // vi: set fenc=utf-8 ts=4 sw=4 et:
  2. /*
  3. * Copyright (C) 2013 Nicolas Grekas - p@tchwork.com
  4. *
  5. * This library is free software; you can redistribute it and/or modify it
  6. * under the terms of the (at your option):
  7. * Apache License v2.0 (http://apache.org/licenses/LICENSE-2.0.txt), or
  8. * GNU General Public License v2.0 (http://gnu.org/licenses/gpl-2.0.txt).
  9. */
  10. /**
  11. * Normalizer plugs Patchwork\PHP\Shim\Normalizer as a PHP implementation
  12. * of intl's Normalizer when the intl extension in not enabled.
  13. */
  14. class Normalizer extends Patchwork\PHP\Shim\Normalizer
  15. {
  16. }