Небольшие изменения

This commit is contained in:
RedHood
2020-09-03 16:18:02 +10:00
parent 3d74862474
commit 9d38d69445
38 changed files with 56 additions and 1607 deletions

View File

@@ -0,0 +1,12 @@
<?php
declare(strict_types=1);
namespace VK\Browsers;
abstract class BrowserAbstract
{
abstract public static function post($method, $params = []);
abstract public static function getToken($url);
abstract protected static function checkSSL($domain);
}