<?php
declare(strict_types=1);
namespace VK\Plugins;
abstract class PluginAbstract
{
abstract public function getInfo(): PluginAbstract;
}