1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-04 16:47:48 +01:00
MadelineProto/tools/build_docs/schemas.php
Daniil Gentili 499107af14
Some checks failed
ci/woodpecker/push/build Pipeline failed
Layer 151
2022-12-29 20:40:06 +01:00

42 lines
714 B
PHP

<?php declare(strict_types=1);
/**
* Load schema file names.
*
*/
function loadSchemas(): array
{
$res = [];
foreach (glob(getcwd().'/schemas/TL_telegram_*') as $file) {
preg_match("/telegram_v(\d+)/", $file, $matches);
$res[$matches[1]] = $file;
}
ksort($res);
return $res;
}
/**
* Return max available layer number.
*
* @param array $schemas Scheme array
*
* @return integer
*/
function maxLayer(array $schemas): int
{
$schemas = array_keys($schemas);
return end($schemas);
}
/**
* Init docs.
*
* @param array $layers Scheme array
*
* @return array Documentation information for old docs
*/
function initDocs(array $layers): array
{
return [];
}