1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13:
<?php namespace Scene7\Definitions; final class Encodings { const UTF_8 = 'UTF-8'; const UTF_16 = 'UTF-16'; const UTF_16LE = 'UTF-16LE'; const UTF_16BE = 'UTF-16BE'; const ISO_8859_1 = 'ISO-8859-1'; }