Уничтожение

This commit is contained in:
Arsen Mirzaev Tatyano-Muradovich 2021-03-10 11:07:34 +10:00
parent baba984df3
commit 86eb541d66
4 changed files with 77 additions and 8 deletions

3
.gitignore vendored
View File

@ -1,4 +1,3 @@
/logs /logs
/temp /temp
/vendor /vendor
.env

View File

@ -57,9 +57,9 @@ final class messages extends method
/** /**
* Записать текст * Записать текст
* *
* @param string $text Текст * @param string $text Текст
* *
* @return self * @return self
*/ */
public function text(string $text): self public function text(string $text): self
@ -76,9 +76,9 @@ final class messages extends method
/** /**
* Записать фото * Записать фото
* *
* @param $img Фото * @param $img Фото
* *
* @return self * @return self
*/ */
public function image(...$imgs): self public function image(...$imgs): self
@ -98,7 +98,7 @@ final class messages extends method
/** /**
* Записать вложение * Записать вложение
* *
* @param $attachments Вложения * @param $attachments Вложения
*/ */
public function attachment(string ...$attachments): self public function attachment(string ...$attachments): self
@ -284,6 +284,7 @@ final class messages extends method
$this->robot->api['attachment'] = implode(',', $this->attachments); $this->robot->api['attachment'] = implode(',', $this->attachments);
} }
return $settings; // Что это?
return $settings ?? [];
} }
} }

1
hood/vk/tests/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
./settings.php

View File

@ -0,0 +1,68 @@
<?php
declare(strict_types=1);
namespace hood\vk\tests;
trait settings
{
/**
* @var int $id Идентификатор аккаунта
*/
protected static int $id = null;
/**
* @var int $id Идентификатор вспомогательного аккаунта
*/
protected static int $target_id = null;
/**
* @var string $password Входной аккаунта (если не указан ключ)
*/
protected static string $login = null;
/**
* @var string $password Пароль аккаунта (если не указан ключ)
*/
protected static string $password = null;
/**
* @var string $key Ключ аккаунта
*/
protected static string $key = null;
/**
* @var int $group_id Идентификатор группы
*/
protected static int $group_id = null;
/**
* @var string $key Ключ группы
*/
protected static string $group_key = null;
/**
* @var float $version Версия API
*/
protected static float $version = null;
/**
* @var int $project_id Идентификатор проекта
*/
protected static int $project_id = null;
/**
* @var string $project_key Ключ проекта
*/
protected static string $project_key = null;
/**
* @var string $project_service_key Сервисный ключ проекта
*/
protected static string $project_service_key = null;
/**
* @var bool $ssl SSL-протокол
*/
protected static bool $ssl = false;
}