PageRenderTime 53ms CodeModel.GetById 26ms RepoModel.GetById 0ms app.codeStats 0ms

/sites/all/modules/currency/currency/vendor/bartfeenstra/currency/src/BartFeenstra/Currency/Usage.php

https://bitbucket.org/krecu/daway
PHP | 37 lines | 7 code | 6 blank | 24 comment | 0 complexity | c7d6a0b80ed3b897a3c955344a2289b1 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-3.0, AGPL-1.0, LGPL-2.1
  1. <?php
  2. /**
  3. * @file
  4. * Contains class \BartFeenstra\Currency\Currency.
  5. */
  6. namespace BartFeenstra\Currency;
  7. /**
  8. * Describes a currency's usage in a country.
  9. */
  10. class Usage {
  11. /**
  12. * The ISO 8601 datetime of the moment this usage started.
  13. *
  14. * @var string
  15. */
  16. public $ISO8601From = NULL;
  17. /**
  18. * The ISO 8601 datetime of the moment this usage ended.
  19. *
  20. * @var string
  21. */
  22. public $ISO8601To = NULL;
  23. /**
  24. * An ISO 3166-1 alpha-1 country code.
  25. *
  26. * @todo With minimal effort we can also support ISO 3166-3 codes.
  27. *
  28. * @var string
  29. */
  30. public $ISO3166Code = NULL;
  31. }