streams/vendor/pear/text_languagedetect/data/build-unicode_blocks.php
Klaus Weidenbach 8e4c5db766 ⬆️ Update Text_LanguageDetect.
Update from v0.3.0 (2012) to v1.0.0 (2017) which should remove some
warnings and improve PHP7 support.
Using composer to handle this PEAR library now.

Fix a problem in FeedutilsTest.
2017-10-29 22:00:06 +01:00

7 lines
No EOL
231 B
PHP

<?php
/**
* Generate the serialized unicode_blocks.dat file shipped with the package
*/
$unicode_blocks = include __DIR__ . '/unicode_blocks.php';
file_put_contents(__DIR__ . '/unicode_blocks.dat', serialize($unicode_blocks));
?>