phpcs auto fixes

This commit is contained in:
Dennis Eichhorn 2023-05-28 04:00:43 +00:00
parent 3938f56f88
commit 055d25425e
171 changed files with 12522 additions and 12536 deletions

View File

@ -298,7 +298,7 @@ final class BasicOcr
} }
} }
for ($i = 0; $i < $size; $i++) { for ($i = 0; $i < $size; ++$i) {
\fwrite($out, \pack('C', \round($mnist[$i] * 255))); \fwrite($out, \pack('C', \round($mnist[$i] * 255)));
} }
} }

View File

@ -186,10 +186,10 @@ final class CreditSafe implements CreditRatingInterface
'postcode' => empty($postal) ? null : $postal, 'postcode' => empty($postal) ? null : $postal,
'city' => empty($city) ? null : $city, 'city' => empty($city) ? null : $city,
], ],
'regNo' => empty($$localRegistrationNo) ? null : $$localRegistrationNo, 'regNo' => empty(${$localRegistrationNo}) ? null : ${$localRegistrationNo},
'vatNo' => empty($vatNo) ? null : $vatNo, 'vatNo' => empty($vatNo) ? null : $vatNo,
'countryCode' => $country, 'countryCode' => $country,
] ],
]); ]);
$response = Rest::request($request); $response = Rest::request($request);

View File

@ -227,7 +227,6 @@ final class EUVATVies implements EUVATInterface
? \substr($json['address'], 0, \stripos($json['address'], "\n") - 1) ? \substr($json['address'], 0, \stripos($json['address'], "\n") - 1)
: $json['address']; : $json['address'];
$result['name'] = $result['name'] === '---' ? '' : $result['name']; $result['name'] = $result['name'] === '---' ? '' : $result['name'];
$result['city'] = $result['city'] === '---' ? '' : $result['city']; $result['city'] = $result['city'] === '---' ? '' : $result['city'];
$result['postal'] = $result['postal'] === '---' ? '' : $result['postal']; $result['postal'] = $result['postal'] === '---' ? '' : $result['postal'];

View File

@ -14,8 +14,6 @@ declare(strict_types=1);
namespace phpOMS\Api\Payment; namespace phpOMS\Api\Payment;
use Stripe\StripeClient;
/** /**
* Strip generator. * Strip generator.
* *

View File

@ -383,7 +383,6 @@ final class ReadMapper extends DataMapperAbstract
$join['mapper']::TABLE . '_d' . ($this->depth + 1) $join['mapper']::TABLE . '_d' . ($this->depth + 1)
); );
} }
} }
} }

View File

@ -158,7 +158,7 @@ class Grammar extends GrammarAbstract
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function compilePostQueries(BuilderAbstract $query): array public function compilePostQueries(BuilderAbstract $query) : array
{ {
return []; return [];
} }

View File

@ -48,7 +48,7 @@ class MysqlGrammar extends Grammar
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function compilePostQueries(BuilderAbstract $query): array public function compilePostQueries(BuilderAbstract $query) : array
{ {
/** @var SchemaBuilder $query */ /** @var SchemaBuilder $query */
@ -66,7 +66,7 @@ class MysqlGrammar extends Grammar
. ' WHERE'; . ' WHERE';
foreach ($field['meta']['multi_autoincrement'] as $index => $autoincrement) { foreach ($field['meta']['multi_autoincrement'] as $index => $autoincrement) {
$tmpSql .= ($index > 0 ? ' AND' : '' ) . ' ' . $autoincrement . ' = NEW.' . $autoincrement; $tmpSql .= ($index > 0 ? ' AND' : '') . ' ' . $autoincrement . ' = NEW.' . $autoincrement;
} }
$tmpSql .= ' LIMIT 1); END;'; $tmpSql .= ' LIMIT 1); END;';

View File

@ -16,7 +16,6 @@ namespace phpOMS\Dispatcher;
use phpOMS\Application\ApplicationAbstract; use phpOMS\Application\ApplicationAbstract;
use phpOMS\Autoloader; use phpOMS\Autoloader;
use phpOMS\Module\ModuleAbstract;
use phpOMS\System\File\PathException; use phpOMS\System\File\PathException;
/** /**

View File

@ -14,9 +14,6 @@ declare(strict_types=1);
namespace phpOMS\Localization; namespace phpOMS\Localization;
use phpOMS\Localization\ISO639x1Enum;
use phpOMS\Localization\ISO3166TwoEnum;
/** /**
* String l11n class. * String l11n class.
* *

View File

@ -114,7 +114,7 @@ trait ISO3166RegionTrait
case 'west-europe': case 'west-europe':
return [ return [
self::_AUT, self::_BEL, self::_FRA, self::_DEU, self::_LIE, self::_AUT, self::_BEL, self::_FRA, self::_DEU, self::_LIE,
self::_LUX, self::_NLD, self::_MCO, self::_CHE self::_LUX, self::_NLD, self::_MCO, self::_CHE,
]; ];
case 'middle-east': case 'middle-east':
return [ return [

View File

@ -10,7 +10,7 @@
* @license https://opensource.org/licenses/mit-license.html MIT * @license https://opensource.org/licenses/mit-license.html MIT
* @link https://github.com/patrickschur/language-detection * @link https://github.com/patrickschur/language-detection
*/ */
declare(strict_types = 1); declare(strict_types=1);
namespace phpOMS\Localization\LanguageDetection; namespace phpOMS\Localization\LanguageDetection;
@ -74,7 +74,7 @@ class Language extends NgramParser
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function detect(string $str): LanguageResult public function detect(string $str) : LanguageResult
{ {
$str = \mb_strtolower($str); $str = \mb_strtolower($str);
$samples = $this->getNgrams($str); $samples = $this->getNgrams($str);

View File

@ -10,7 +10,7 @@
* @license https://opensource.org/licenses/mit-license.html MIT * @license https://opensource.org/licenses/mit-license.html MIT
* @link https://github.com/patrickschur/language-detection * @link https://github.com/patrickschur/language-detection
*/ */
declare(strict_types = 1); declare(strict_types=1);
namespace phpOMS\Localization\LanguageDetection; namespace phpOMS\Localization\LanguageDetection;
@ -22,7 +22,7 @@ namespace phpOMS\Localization\LanguageDetection;
* @link https://github.com/patrickschur/language-detection * @link https://github.com/patrickschur/language-detection
* @since 1.0.0 * @since 1.0.0
*/ */
class LanguageResult implements \JsonSerializable, \IteratorAggregate, \ArrayAccess class LanguageResult implements \ArrayAccess, \IteratorAggregate, \JsonSerializable
{ {
/** /**
* Match threshold * Match threshold
@ -55,7 +55,7 @@ class LanguageResult implements \JsonSerializable, \IteratorAggregate, \ArrayAcc
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function offsetExists($offset): bool public function offsetExists($offset) : bool
{ {
return isset($this->result[$offset]); return isset($this->result[$offset]);
} }
@ -63,7 +63,7 @@ class LanguageResult implements \JsonSerializable, \IteratorAggregate, \ArrayAcc
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function offsetGet($offset): ?float public function offsetGet($offset) : ?float
{ {
return $this->result[$offset] ?? null; return $this->result[$offset] ?? null;
} }
@ -71,9 +71,9 @@ class LanguageResult implements \JsonSerializable, \IteratorAggregate, \ArrayAcc
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function offsetSet($offset, $value): void public function offsetSet($offset, $value) : void
{ {
if (null === $offset) { if ($offset === null) {
$this->result[] = $value; $this->result[] = $value;
} else { } else {
$this->result[$offset] = $value; $this->result[$offset] = $value;
@ -83,7 +83,7 @@ class LanguageResult implements \JsonSerializable, \IteratorAggregate, \ArrayAcc
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function offsetUnset($offset): void public function offsetUnset($offset) : void
{ {
unset($this->result[$offset]); unset($this->result[$offset]);
} }
@ -91,7 +91,7 @@ class LanguageResult implements \JsonSerializable, \IteratorAggregate, \ArrayAcc
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function jsonSerialize(): array public function jsonSerialize() : array
{ {
return $this->result; return $this->result;
} }
@ -103,7 +103,7 @@ class LanguageResult implements \JsonSerializable, \IteratorAggregate, \ArrayAcc
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function __toString(): string public function __toString() : string
{ {
return (string) \key($this->result); return (string) \key($this->result);
} }
@ -117,9 +117,9 @@ class LanguageResult implements \JsonSerializable, \IteratorAggregate, \ArrayAcc
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function whitelist(string ...$whitelist): LanguageResult public function whitelist(string ...$whitelist) : self
{ {
return new LanguageResult(\array_intersect_key($this->result, \array_flip($whitelist))); return new self(\array_intersect_key($this->result, \array_flip($whitelist)));
} }
/** /**
@ -131,9 +131,9 @@ class LanguageResult implements \JsonSerializable, \IteratorAggregate, \ArrayAcc
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function blacklist(string ...$blacklist): LanguageResult public function blacklist(string ...$blacklist) : self
{ {
return new LanguageResult(\array_diff_key($this->result, \array_flip($blacklist))); return new self(\array_diff_key($this->result, \array_flip($blacklist)));
} }
/** /**
@ -143,7 +143,7 @@ class LanguageResult implements \JsonSerializable, \IteratorAggregate, \ArrayAcc
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function close(): array public function close() : array
{ {
return $this->result; return $this->result;
} }
@ -155,15 +155,15 @@ class LanguageResult implements \JsonSerializable, \IteratorAggregate, \ArrayAcc
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function bestResults(): LanguageResult public function bestResults() : self
{ {
if (empty($this->result)) { if (empty($this->result)) {
return new LanguageResult; return new self();
} }
$first = \array_values($this->result)[0]; $first = \array_values($this->result)[0];
return new LanguageResult(\array_filter($this->result, function ($value) use ($first) { return new self(\array_filter($this->result, function ($value) use ($first) {
return ($first - $value) <= self::THRESHOLD; return ($first - $value) <= self::THRESHOLD;
})); }));
} }
@ -171,7 +171,7 @@ class LanguageResult implements \JsonSerializable, \IteratorAggregate, \ArrayAcc
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function getIterator(): \ArrayIterator public function getIterator() : \ArrayIterator
{ {
return new \ArrayIterator($this->result); return new \ArrayIterator($this->result);
} }
@ -186,8 +186,8 @@ class LanguageResult implements \JsonSerializable, \IteratorAggregate, \ArrayAcc
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function limit(int $offset, int $length = null): LanguageResult public function limit(int $offset, int $length = null) : self
{ {
return new LanguageResult(\array_slice($this->result, $offset, $length)); return new self(\array_slice($this->result, $offset, $length));
} }
} }

View File

@ -10,7 +10,7 @@
* @license https://opensource.org/licenses/mit-license.html MIT * @license https://opensource.org/licenses/mit-license.html MIT
* @link https://github.com/patrickschur/language-detection * @link https://github.com/patrickschur/language-detection
*/ */
declare(strict_types = 1); declare(strict_types=1);
namespace phpOMS\Localization\LanguageDetection; namespace phpOMS\Localization\LanguageDetection;
@ -85,7 +85,7 @@ abstract class NgramParser
* *
* @since 1.0.0 * @since 1.0.0
*/ */
protected function getNgrams(string $str): array protected function getNgrams(string $str) : array
{ {
$tokens = []; $tokens = [];

View File

@ -10,7 +10,7 @@
* @license https://opensource.org/licenses/mit-license.html MIT * @license https://opensource.org/licenses/mit-license.html MIT
* @link https://github.com/patrickschur/language-detection * @link https://github.com/patrickschur/language-detection
*/ */
declare(strict_types = 1); declare(strict_types=1);
namespace phpOMS\Localization\LanguageDetection\Tokenizer; namespace phpOMS\Localization\LanguageDetection\Tokenizer;
@ -33,7 +33,7 @@ class WhitespaceTokenizer
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function tokenize(string $str): array public function tokenize(string $str) : array
{ {
return \array_map( return \array_map(
function ($word) { function ($word) {

View File

@ -10,7 +10,7 @@
* @license https://opensource.org/licenses/mit-license.html MIT * @license https://opensource.org/licenses/mit-license.html MIT
* @link https://github.com/patrickschur/language-detection * @link https://github.com/patrickschur/language-detection
*/ */
declare(strict_types = 1); declare(strict_types=1);
namespace phpOMS\Localization\LanguageDetection; namespace phpOMS\Localization\LanguageDetection;
@ -33,7 +33,7 @@ class Trainer extends NgramParser
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function learn(string $dirname = '') public function learn(string $dirname = '') : void
{ {
if (empty($dirname)) { if (empty($dirname)) {
$dirname = __DIR__ . '/resources/*/*.txt'; $dirname = __DIR__ . '/resources/*/*.txt';
@ -55,7 +55,7 @@ class Trainer extends NgramParser
\file_put_contents( \file_put_contents(
\substr_replace($txt->getPathname(), 'php', -3), \substr_replace($txt->getPathname(), 'php', -3),
\sprintf("<?php\n\nreturn %s;\n", var_export([ $txt->getBasename('.txt') => $this->getNgrams($content) ], true)) \sprintf("<?php\n\nreturn %s;\n", \var_export([$txt->getBasename('.txt') => $this->getNgrams($content)], true))
); );
} }
} }

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'ab' => 'ab' =>
array ( [
0 => 'а', 0 => 'а',
1 => 'и', 1 => 'и',
2 => 'р', 2 => 'р',
@ -313,5 +313,5 @@ return array (
307 => 'р_', 307 => 'р_',
308 => 'уб', 308 => 'уб',
309 => 'ч', 309 => 'ч',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'af' => 'af' =>
array ( [
0 => 'e', 0 => 'e',
1 => 'n', 1 => 'n',
2 => 'i', 2 => 'i',
@ -313,5 +313,5 @@ return array (
307 => 'eu', 307 => 'eu',
308 => 'ew', 308 => 'ew',
309 => '_p', 309 => '_p',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'am' => 'am' =>
array ( [
0 => 'ን', 0 => 'ን',
1 => 'ት', 1 => 'ት',
2 => 'ት_', 2 => 'ት_',
@ -313,5 +313,5 @@ return array (
307 => 'ሁሉ_', 307 => 'ሁሉ_',
308 => 'በር_', 308 => 'በር_',
309 => 'በኀብ', 309 => 'በኀብ',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'ar' => 'ar' =>
array ( [
0 => 'ا', 0 => 'ا',
1 => 'ل', 1 => 'ل',
2 => 'ال', 2 => 'ال',
@ -313,5 +313,5 @@ return array (
307 => 'لإع', 307 => 'لإع',
308 => 'قان', 308 => 'قان',
309 => 'تما', 309 => 'تما',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'ay' => 'ay' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'i', 1 => 'i',
2 => 'k', 2 => 'k',
@ -313,5 +313,5 @@ return array (
307 => '\'as', 307 => '\'as',
308 => 'chi', 308 => 'chi',
309 => 'ink', 309 => 'ink',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'az-Cyrl' => 'az-Cyrl' =>
array ( [
0 => 'ә', 0 => 'ә',
1 => 'а', 1 => 'а',
2 => 'и', 2 => 'и',
@ -313,5 +313,5 @@ return array (
307 => 'сан', 307 => 'сан',
308 => 'ны_', 308 => 'ны_',
309 => 'әлә', 309 => 'әлә',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'az-Latn' => 'az-Latn' =>
array ( [
0 => 'ə', 0 => 'ə',
1 => 'a', 1 => 'a',
2 => 'i', 2 => 'i',
@ -313,5 +313,5 @@ return array (
307 => '_sə', 307 => '_sə',
308 => 'nsa', 308 => 'nsa',
309 => 'san', 309 => 'san',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'be' => 'be' =>
array ( [
0 => 'а', 0 => 'а',
1 => 'н', 1 => 'н',
2 => 'ы', 2 => 'ы',
@ -313,5 +313,5 @@ return array (
307 => 'зн', 307 => 'зн',
308 => 'ус', 308 => 'ус',
309 => 'пе', 309 => 'пе',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'bg' => 'bg' =>
array ( [
0 => 'а', 0 => 'а',
1 => 'о', 1 => 'о',
2 => 'и', 2 => 'и',
@ -313,5 +313,5 @@ return array (
307 => 'ид', 307 => 'ид',
308 => 'рж', 308 => 'рж',
309 => 'ми', 309 => 'ми',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'bi' => 'bi' =>
array ( [
0 => 'o', 0 => 'o',
1 => 'e', 1 => 'e',
2 => 'a', 2 => 'a',
@ -313,5 +313,5 @@ return array (
307 => 'ks', 307 => 'ks',
308 => 'ls', 308 => 'ls',
309 => 'il', 309 => 'il',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'bn' => 'bn' =>
array ( [
0 => '_র_', 0 => '_র_',
1 => '_র', 1 => '_র',
2 => 'র_', 2 => 'র_',
@ -313,5 +313,5 @@ return array (
307 => '_বস', 307 => '_বস',
308 => 'নয_', 308 => 'নয_',
309 => '_হয', 309 => '_হয',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'bo' => 'bo' =>
array ( [
0 => 'ས_', 0 => 'ས_',
1 => '_ས_', 1 => '_ས_',
2 => 'ས', 2 => 'ས',
@ -313,5 +313,5 @@ return array (
307 => '_བཏ', 307 => '_བཏ',
308 => 'རམ_', 308 => 'རམ_',
309 => 'དཔ_', 309 => 'དཔ_',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'br' => 'br' =>
array ( [
0 => 'e', 0 => 'e',
1 => 'a', 1 => 'a',
2 => 'n', 2 => 'n',
@ -313,5 +313,5 @@ return array (
307 => '_la', 307 => '_la',
308 => 'dis', 308 => 'dis',
309 => 'ek_', 309 => 'ek_',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'bs-Cyrl' => 'bs-Cyrl' =>
array ( [
0 => 'а', 0 => 'а',
1 => 'и', 1 => 'и',
2 => 'о', 2 => 'о',
@ -313,5 +313,5 @@ return array (
307 => 'ним', 307 => 'ним',
308 => 'одн', 308 => 'одн',
309 => а_', 309 => а_',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'bs-Latn' => 'bs-Latn' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'i', 1 => 'i',
2 => 'o', 2 => 'o',
@ -313,5 +313,5 @@ return array (
307 => '_do', 307 => '_do',
308 => 'nim', 308 => 'nim',
309 => 'tu_', 309 => 'tu_',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'ca' => 'ca' =>
array ( [
0 => 'e', 0 => 'e',
1 => 'a', 1 => 'a',
2 => 'i', 2 => 'i',
@ -313,5 +313,5 @@ return array (
307 => 'ens', 307 => 'ens',
308 => 'ra_', 308 => 'ra_',
309 => 'ene', 309 => 'ene',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'ch' => 'ch' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'i', 1 => 'i',
2 => 'n', 2 => 'n',
@ -313,5 +313,5 @@ return array (
307 => 'ah', 307 => 'ah',
308 => 'ek', 308 => 'ek',
309 => 'ca', 309 => 'ca',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'co' => 'co' =>
array ( [
0 => 'i', 0 => 'i',
1 => 'a', 1 => 'a',
2 => 'u', 2 => 'u',
@ -313,5 +313,5 @@ return array (
307 => '_cù', 307 => '_cù',
308 => 'iun', 308 => 'iun',
309 => 'cù_', 309 => 'cù_',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'cr' => 'cr' =>
array ( [
0 => 'ᓂ', 0 => 'ᓂ',
1 => 'ᑕ', 1 => 'ᑕ',
2 => '', 2 => '',
@ -313,5 +313,5 @@ return array (
307 => 'ᔑᑕ', 307 => 'ᔑᑕ',
308 => 'ᐃᑌ', 308 => 'ᐃᑌ',
309 => 'ᑎᓱ', 309 => 'ᑎᓱ',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'cs' => 'cs' =>
array ( [
0 => 'o', 0 => 'o',
1 => 'n', 1 => 'n',
2 => 'e', 2 => 'e',
@ -313,5 +313,5 @@ return array (
307 => 'tá', 307 => 'tá',
308 => 'se', 308 => 'se',
309 => 'cí', 309 => 'cí',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'cy' => 'cy' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'd', 1 => 'd',
2 => 'y', 2 => 'y',
@ -313,5 +313,5 @@ return array (
307 => 'yr_', 307 => 'yr_',
308 => 'gae', 308 => 'gae',
309 => 'chy', 309 => 'chy',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'da' => 'da' =>
array ( [
0 => 'e', 0 => 'e',
1 => 'r', 1 => 'r',
2 => 'n', 2 => 'n',
@ -313,5 +313,5 @@ return array (
307 => '_om', 307 => '_om',
308 => 'nal', 308 => 'nal',
309 => 'ona', 309 => 'ona',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'de' => 'de' =>
array ( [
0 => 'e', 0 => 'e',
1 => 'n', 1 => 'n',
2 => 'r', 2 => 'r',
@ -313,5 +313,5 @@ return array (
307 => 'ab', 307 => 'ab',
308 => 'fa', 308 => 'fa',
309 => 'la', 309 => 'la',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'dz' => 'dz' =>
array ( [
0 => 'ས_', 0 => 'ས_',
1 => '_ད', 1 => '_ད',
2 => '_ག', 2 => '_ག',
@ -313,5 +313,5 @@ return array (
307 => '_ཆས', 307 => '_ཆས',
308 => 'མའ_', 308 => 'མའ_',
309 => 'སམ_', 309 => 'སམ_',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'el-monoton' => 'el-monoton' =>
array ( [
0 => 'α', 0 => 'α',
1 => 'ι', 1 => 'ι',
2 => 'ε', 2 => 'ε',
@ -313,5 +313,5 @@ return array (
307 => '_χ', 307 => '_χ',
308 => 'αγ', 308 => 'αγ',
309 => 'ής', 309 => 'ής',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'el-polyton' => 'el-polyton' =>
array ( [
0 => 'α', 0 => 'α',
1 => 'τ', 1 => 'τ',
2 => 'ι', 2 => 'ι',
@ -313,5 +313,5 @@ return array (
307 => 'σα', 307 => 'σα',
308 => 'ὑ', 308 => 'ὑ',
309 => 'κοι', 309 => 'κοι',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'en' => 'en' =>
array ( [
0 => 'e', 0 => 'e',
1 => 't', 1 => 't',
2 => 'n', 2 => 'n',
@ -313,5 +313,5 @@ return array (
307 => '_st', 307 => '_st',
308 => 'hum', 308 => 'hum',
309 => 'uma', 309 => 'uma',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'eo' => 'eo' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'e', 1 => 'e',
2 => 'o', 2 => 'o',
@ -313,5 +313,5 @@ return array (
307 => 'ata', 307 => 'ata',
308 => 'kla', 308 => 'kla',
309 => 'don', 309 => 'don',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'es' => 'es' =>
array ( [
0 => 'e', 0 => 'e',
1 => 'a', 1 => 'a',
2 => 'o', 2 => 'o',
@ -313,5 +313,5 @@ return array (
307 => 'nid', 307 => 'nid',
308 => 'uma', 308 => 'uma',
309 => 'ial', 309 => 'ial',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'et' => 'et' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'e', 1 => 'e',
2 => 'i', 2 => 'i',
@ -313,5 +313,5 @@ return array (
307 => 'dis', 307 => 'dis',
308 => 'pid', 308 => 'pid',
309 => 'nen', 309 => 'nen',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'eu' => 'eu' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'e', 1 => 'e',
2 => 'i', 2 => 'i',
@ -313,5 +313,5 @@ return array (
307 => 'iar', 307 => 'iar',
308 => 'ela', 308 => 'ela',
309 => 'nar', 309 => 'nar',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'fa' => 'fa' =>
array ( [
0 => 'ا', 0 => 'ا',
1 => 'ی', 1 => 'ی',
2 => 'د', 2 => 'د',
@ -313,5 +313,5 @@ return array (
307 => 'دیه', 307 => 'دیه',
308 => ه_', 308 => ه_',
309 => 'اری', 309 => 'اری',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'fi' => 'fi' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'i', 1 => 'i',
2 => 't', 2 => 't',
@ -313,5 +313,5 @@ return array (
307 => 'sty', 307 => 'sty',
308 => '_te', 308 => '_te',
309 => '_si', 309 => '_si',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'fj' => 'fj' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'a_', 1 => 'a_',
2 => 'i', 2 => 'i',
@ -313,5 +313,5 @@ return array (
307 => 'ti_', 307 => 'ti_',
308 => '_ko', 308 => '_ko',
309 => 'ri_', 309 => 'ri_',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'fo' => 'fo' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'i', 1 => 'i',
2 => 'r', 2 => 'r',
@ -313,5 +313,5 @@ return array (
307 => 'es', 307 => 'es',
308 => 'tø', 308 => 'tø',
309 => 'á_', 309 => 'á_',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'fr' => 'fr' =>
array ( [
0 => 'e', 0 => 'e',
1 => 't', 1 => 't',
2 => 'i', 2 => 'i',
@ -313,5 +313,5 @@ return array (
307 => 'ge', 307 => 'ge',
308 => 'fa', 308 => 'fa',
309 => 'êt', 309 => 'êt',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'fy' => 'fy' =>
array ( [
0 => 'e', 0 => 'e',
1 => 'n', 1 => 'n',
2 => 'i', 2 => 'i',
@ -313,5 +313,5 @@ return array (
307 => 'eg', 307 => 'eg',
308 => 'erw', 308 => 'erw',
309 => 'str', 309 => 'str',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'ga' => 'ga' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'i', 1 => 'i',
2 => 'h', 2 => 'h',
@ -313,5 +313,5 @@ return array (
307 => 'eam', 307 => 'eam',
308 => 'idi', 308 => 'idi',
309 => 'hio', 309 => 'hio',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'gd' => 'gd' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'h', 1 => 'h',
2 => 'i', 2 => 'i',
@ -313,5 +313,5 @@ return array (
307 => 'un', 307 => 'un',
308 => 'sg', 308 => 'sg',
309 => 'ia', 309 => 'ia',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'gl' => 'gl' =>
array ( [
0 => 'e', 0 => 'e',
1 => 'a', 1 => 'a',
2 => 'o', 2 => 'o',
@ -313,5 +313,5 @@ return array (
307 => 'ndi', 307 => 'ndi',
308 => '_ac', 308 => '_ac',
309 => 'ici', 309 => 'ici',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'gn' => 'gn' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'e', 1 => 'e',
2 => 'o', 2 => 'o',
@ -313,5 +313,5 @@ return array (
307 => 'hes', 307 => 'hes',
308 => '_up', 308 => '_up',
309 => 'áva', 309 => 'áva',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'gu' => 'gu' =>
array ( [
0 => 'ન_', 0 => 'ન_',
1 => '_ન_', 1 => '_ન_',
2 => '_ક_', 2 => '_ક_',
@ -313,5 +313,5 @@ return array (
307 => 'યમ_', 307 => 'યમ_',
308 => '_વર', 308 => '_વર',
309 => 'રસ_', 309 => 'રસ_',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'ha' => 'ha' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'ɛ', 1 => 'ɛ',
2 => 'i', 2 => 'i',
@ -313,5 +313,5 @@ return array (
307 => '_ba', 307 => '_ba',
308 => '_yɔ', 308 => '_yɔ',
309 => 'esh', 309 => 'esh',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'he' => 'he' =>
array ( [
0 => 'ו', 0 => 'ו',
1 => 'י', 1 => 'י',
2 => 'ה', 2 => 'ה',
@ -313,5 +313,5 @@ return array (
307 => 'חב', 307 => 'חב',
308 => 'הד', 308 => 'הד',
309 => 'ב_', 309 => 'ב_',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'hi' => 'hi' =>
array ( [
0 => '_क_', 0 => '_क_',
1 => 'क_', 1 => 'क_',
2 => '_क', 2 => '_क',
@ -313,5 +313,5 @@ return array (
307 => 'हर_', 307 => 'हर_',
308 => '_बर', 308 => '_बर',
309 => 'जनत', 309 => 'जनत',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'hr' => 'hr' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'o', 1 => 'o',
2 => 'i', 2 => 'i',
@ -313,5 +313,5 @@ return array (
307 => 'lju', 307 => 'lju',
308 => 'oji', 308 => 'oji',
309 => 'vim', 309 => 'vim',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'hu' => 'hu' =>
array ( [
0 => 'e', 0 => 'e',
1 => 'a', 1 => 'a',
2 => 's', 2 => 's',
@ -313,5 +313,5 @@ return array (
307 => 'ban', 307 => 'ban',
308 => 'ap', 308 => 'ap',
309 => 'ló', 309 => 'ló',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'hy' => 'hy' =>
array ( [
0 => 'ա', 0 => 'ա',
1 => 'ն', 1 => 'ն',
2 => 'ո', 2 => 'ո',
@ -313,5 +313,5 @@ return array (
307 => 'որո', 307 => 'որո',
308 => 'պար', 308 => 'պար',
309 => 'ործ', 309 => 'ործ',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'ia' => 'ia' =>
array ( [
0 => 'e', 0 => 'e',
1 => 't', 1 => 't',
2 => 'a', 2 => 'a',
@ -313,5 +313,5 @@ return array (
307 => 'gi', 307 => 'gi',
308 => 'fa', 308 => 'fa',
309 => 'ie', 309 => 'ie',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'id' => 'id' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'n', 1 => 'n',
2 => 'e', 2 => 'e',
@ -313,5 +313,5 @@ return array (
307 => 'aku', 307 => 'aku',
308 => 'uku', 308 => 'uku',
309 => 'ind', 309 => 'ind',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'ig' => 'ig' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'e', 1 => 'e',
2 => 'a_', 2 => 'a_',
@ -313,5 +313,5 @@ return array (
307 => 'kọ', 307 => 'kọ',
308 => '_t', 308 => '_t',
309 => '\'e', 309 => '\'e',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'io' => 'io' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'e', 1 => 'e',
2 => 'o', 2 => 'o',
@ -313,5 +313,5 @@ return array (
307 => 'm_', 307 => 'm_',
308 => 'pu', 308 => 'pu',
309 => 'vi', 309 => 'vi',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'is' => 'is' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'r', 1 => 'r',
2 => 'n', 2 => 'n',
@ -313,5 +313,5 @@ return array (
307 => 'rði', 307 => 'rði',
308 => '_má', 308 => '_má',
309 => 'ins', 309 => 'ins',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'it' => 'it' =>
array ( [
0 => 'i', 0 => 'i',
1 => 'e', 1 => 'e',
2 => 'a', 2 => 'a',
@ -313,5 +313,5 @@ return array (
307 => 'si_', 307 => 'si_',
308 => 'tut', 308 => 'tut',
309 => '_re', 309 => '_re',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'iu' => 'iu' =>
array ( [
0 => 'ᑦ', 0 => 'ᑦ',
1 => 'ᑦ_', 1 => 'ᑦ_',
2 => 'ᑎ', 2 => 'ᑎ',
@ -313,5 +313,5 @@ return array (
307 => 'ᖑ', 307 => 'ᖑ',
308 => 'ᕐᓗᓂ', 308 => 'ᕐᓗᓂ',
309 => '_ᐃᓄ', 309 => '_ᐃᓄ',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'ja' => 'ja' =>
array ( [
0 => 'の', 0 => 'の',
1 => 'る', 1 => 'る',
2 => 'に', 2 => 'に',
@ -313,5 +313,5 @@ return array (
307 => '護を受', 307 => '護を受',
308 => '的及び', 308 => '的及び',
309 => '国際連', 309 => '国際連',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'jv' => 'jv' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'n', 1 => 'n',
2 => 'an', 2 => 'an',
@ -313,5 +313,5 @@ return array (
307 => 'ggu', 307 => 'ggu',
308 => 'pad', 308 => 'pad',
309 => 'ind', 309 => 'ind',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'ka' => 'ka' =>
array ( [
0 => 'ა', 0 => 'ა',
1 => 'ი', 1 => 'ი',
2 => 'ე', 2 => 'ე',
@ -313,5 +313,5 @@ return array (
307 => '_ქ', 307 => '_ქ',
308 => 'ჩა', 308 => 'ჩა',
309 => 'გო', 309 => 'გო',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'km' => 'km' =>
array ( [
0 => '_រ', 0 => '_រ',
1 => 'រ', 1 => 'រ',
2 => '_ន_', 2 => '_ន_',
@ -313,5 +313,5 @@ return array (
307 => 'មទ', 307 => 'មទ',
308 => 'អន', 308 => 'អន',
309 => 'ឆ_', 309 => 'ឆ_',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'ko' => 'ko' =>
array ( [
0 => '의', 0 => '의',
1 => '한', 1 => '한',
2 => '의_', 2 => '의_',
@ -313,5 +313,5 @@ return array (
307 => '_포함', 307 => '_포함',
308 => '_있는', 308 => '_있는',
309 => '_증진', 309 => '_증진',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'kr' => 'kr' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'n', 1 => 'n',
2 => 'ə', 2 => 'ə',
@ -313,5 +313,5 @@ return array (
307 => 'din', 307 => 'din',
308 => 'wu_', 308 => 'wu_',
309 => 'uwu', 309 => 'uwu',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'ku' => 'ku' =>
array ( [
0 => 'e', 0 => 'e',
1 => 'a', 1 => 'a',
2 => 'i', 2 => 'i',
@ -313,5 +313,5 @@ return array (
307 => 'khe', 307 => 'khe',
308 => 'civ', 308 => 'civ',
309 => 'ûna', 309 => 'ûna',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'la' => 'la' =>
array ( [
0 => 'i', 0 => 'i',
1 => 'e', 1 => 'e',
2 => 't', 2 => 't',
@ -313,5 +313,5 @@ return array (
307 => 'ess', 307 => 'ess',
308 => 'ad_', 308 => 'ad_',
309 => 'par', 309 => 'par',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'lg' => 'lg' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'u', 1 => 'u',
2 => 'e', 2 => 'e',
@ -313,5 +313,5 @@ return array (
307 => 'oze', 307 => 'oze',
308 => 'wam', 308 => 'wam',
309 => '_ma', 309 => '_ma',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'ln' => 'ln' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'o', 1 => 'o',
2 => 'a_', 2 => 'a_',
@ -313,5 +313,5 @@ return array (
307 => 'da', 307 => 'da',
308 => 'us', 308 => 'us',
309 => 'pa', 309 => 'pa',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'lo' => 'lo' =>
array ( [
0 => 'ນ', 0 => 'ນ',
1 => 'າ', 1 => 'າ',
2 => 'ດ', 2 => 'ດ',
@ -313,5 +313,5 @@ return array (
307 => 'ນຜ', 307 => 'ນຜ',
308 => '_ນໂ', 308 => '_ນໂ',
309 => 'ະທຳ', 309 => 'ະທຳ',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'lt' => 'lt' =>
array ( [
0 => 'i', 0 => 'i',
1 => 'a', 1 => 'a',
2 => 's', 2 => 's',
@ -313,5 +313,5 @@ return array (
307 => 'jų_', 307 => 'jų_',
308 => 'aik', 308 => 'aik',
309 => '_be', 309 => '_be',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'lv' => 'lv' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'i', 1 => 'i',
2 => 's', 2 => 's',
@ -313,5 +313,5 @@ return array (
307 => 'kas', 307 => 'kas',
308 => 'ņa_', 308 => 'ņa_',
309 => 'sta', 309 => 'sta',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'mh' => 'mh' =>
array ( [
0 => 'o', 0 => 'o',
1 => 'e', 1 => 'e',
2 => 'n', 2 => 'n',
@ -313,5 +313,5 @@ return array (
307 => 'kju', 307 => 'kju',
308 => 'kej', 308 => 'kej',
309 => 'inw', 309 => 'inw',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'mn-Cyrl' => 'mn-Cyrl' =>
array ( [
0 => 'а', 0 => 'а',
1 => 'э', 1 => 'э',
2 => 'л', 2 => 'л',
@ -313,5 +313,5 @@ return array (
307 => 'үгэ', 307 => 'үгэ',
308 => 'лга', 308 => 'лга',
309 => 'өрө', 309 => 'өрө',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'ms-Arab' => 'ms-Arab' =>
array ( [
0 => 'ا', 0 => 'ا',
1 => 'ن', 1 => 'ن',
2 => 'ي', 2 => 'ي',
@ -313,5 +313,5 @@ return array (
307 => 'جو', 307 => 'جو',
308 => 'اه', 308 => 'اه',
309 => 'مت', 309 => 'مت',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'ms-Latn' => 'ms-Latn' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'n', 1 => 'n',
2 => 'e', 2 => 'e',
@ -313,5 +313,5 @@ return array (
307 => 'awa', 307 => 'awa',
308 => 'uka', 308 => 'uka',
309 => 'aya', 309 => 'aya',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'mt' => 'mt' =>
array ( [
0 => 'i', 0 => 'i',
1 => 'a', 1 => 'a',
2 => 'l', 2 => 'l',
@ -313,5 +313,5 @@ return array (
307 => 'qu', 307 => 'qu',
308 => 'k_', 308 => 'k_',
309 => 'wa', 309 => 'wa',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'nb' => 'nb' =>
array ( [
0 => 'e', 0 => 'e',
1 => 'r', 1 => 'r',
2 => 't', 2 => 't',
@ -313,5 +313,5 @@ return array (
307 => 'ale', 307 => 'ale',
308 => 'ld', 308 => 'ld',
309 => 'læ', 309 => 'læ',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'ng' => 'ng' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'o', 1 => 'o',
2 => 'n', 2 => 'n',
@ -313,5 +313,5 @@ return array (
307 => 'eg', 307 => 'eg',
308 => 'ad', 308 => 'ad',
309 => 'ug', 309 => 'ug',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'nl' => 'nl' =>
array ( [
0 => 'e', 0 => 'e',
1 => 'n', 1 => 'n',
2 => 'i', 2 => 'i',
@ -313,5 +313,5 @@ return array (
307 => 'elk', 307 => 'elk',
308 => 'tel', 308 => 'tel',
309 => '_to', 309 => '_to',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'nn' => 'nn' =>
array ( [
0 => 'e', 0 => 'e',
1 => 'a', 1 => 'a',
2 => 'r', 2 => 'r',
@ -313,5 +313,5 @@ return array (
307 => '_kr', 307 => '_kr',
308 => '_mo', 308 => '_mo',
309 => '_at', 309 => '_at',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'nv' => 'nv' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'i', 1 => 'i',
2 => 'h', 2 => 'h',
@ -313,5 +313,5 @@ return array (
307 => 'hʼ', 307 => 'hʼ',
308 => 'he', 308 => 'he',
309 => 'íd', 309 => 'íd',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'oc' => 'oc' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'e', 1 => 'e',
2 => 's', 2 => 's',
@ -313,5 +313,5 @@ return array (
307 => 'j', 307 => 'j',
308 => 'á', 308 => 'á',
309 => 'ant', 309 => 'ant',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'om' => 'om' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'i', 1 => 'i',
2 => 'u', 2 => 'u',
@ -313,5 +313,5 @@ return array (
307 => '_mo', 307 => '_mo',
308 => 'ku', 308 => 'ku',
309 => 'me', 309 => 'me',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'pl' => 'pl' =>
array ( [
0 => 'a', 0 => 'a',
1 => 'o', 1 => 'o',
2 => 'i', 2 => 'i',
@ -313,5 +313,5 @@ return array (
307 => 'og', 307 => 'og',
308 => 'ęd', 308 => 'ęd',
309 => 'el', 309 => 'el',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'pt-BR' => 'pt-BR' =>
array ( [
0 => 'e', 0 => 'e',
1 => 'o', 1 => 'o',
2 => 'a', 2 => 'a',
@ -313,5 +313,5 @@ return array (
307 => 'por', 307 => 'por',
308 => 'ont', 308 => 'ont',
309 => 'ê', 309 => 'ê',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'pt-PT' => 'pt-PT' =>
array ( [
0 => 'e', 0 => 'e',
1 => 'a', 1 => 'a',
2 => 'o', 2 => 'o',
@ -313,5 +313,5 @@ return array (
307 => 'sen', 307 => 'sen',
308 => 'nid', 308 => 'nid',
309 => 'ion', 309 => 'ion',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'ro' => 'ro' =>
array ( [
0 => 'e', 0 => 'e',
1 => 'i', 1 => 'i',
2 => 'a', 2 => 'a',
@ -313,5 +313,5 @@ return array (
307 => '_to', 307 => '_to',
308 => 'ste', 308 => 'ste',
309 => 'ni_', 309 => 'ni_',
), ],
); ];

View File

@ -1,8 +1,8 @@
<?php <?php declare(strict_types=1);
return array ( return [
'ru' => 'ru' =>
array ( [
0 => 'о', 0 => 'о',
1 => 'е', 1 => 'е',
2 => 'и', 2 => 'и',
@ -313,5 +313,5 @@ return array (
307 => 'пре', 307 => 'пре',
308 => 'оди', 308 => 'оди',
309 => 'ше', 309 => 'ше',
), ],
); ];

Some files were not shown because too many files have changed in this diff Show More