-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace iconv with ICU Transliterator
- Loading branch information
1 parent
f34b764
commit a556232
Showing
5 changed files
with
60 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
<?php | ||
/** | ||
* Created by PhpStorm. | ||
* User: elforastero | ||
* Date: 12/3/18 | ||
* Time: 10:08 PM | ||
*/ | ||
|
||
namespace ElForastero\Transliterate; | ||
declare(strict_types=1); | ||
|
||
namespace ElForastero\Transliterate; | ||
|
||
class Map | ||
/** | ||
* Class Map. | ||
* @author Eugene Dzhumak <[email protected]> | ||
* @version 2.0.0 | ||
*/ | ||
abstract class Map | ||
{ | ||
public const LANG_RU = 'ru'; | ||
public const LANG_UK = 'uk'; | ||
|
||
public const DEFAULT = 'common'; | ||
public const GOST_7_79_2000 = 'GOST_7.79.2000'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters