for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Longman\TelegramBot\Entities\MenuButton;
use Longman\TelegramBot\Entities\Entity;
class Factory extends \Longman\TelegramBot\Entities\Factory
{
public static function make(array $data, string $bot_username): Entity
$type = [
'commands' => MenuButtonCommands::class,
'web_app' => MenuButtonWebApp::class,
'default' => MenuButtonDefault::class,
];
if (! isset($type[$data['type'] ?? ''])) {
return new MenuButtonNotImplemented($data, $bot_username);
}
$class = $type[$data['type']];
return new $class($data, $bot_username);