Файл: upload/core/vendor/longman/telegram-bot/src/Entities/Factory.php
Строк: 23
<?php
namespace LongmanTelegramBotEntities;
abstract class Factory
{
abstract public static function make(array $data, string $bot_username): Entity;
public static function resolveEntityClass(string $class, $property, string $bot_username = ''): Entity
{
if (is_a($property, $class)) {
return $property;
}
if (is_subclass_of($class, Factory::class)) {
return $class::make($property, $bot_username);
}
return new $class($property, $bot_username);
}
}