This commit is contained in:
2023-12-12 15:35:37 +08:00
parent 6438d8affb
commit d16adba08e
32 changed files with 285 additions and 311 deletions
+11 -14
View File
@@ -27,7 +27,7 @@ abstract class Subject extends Multiprogramming
/**
* @param array $keywords
*/
public function setKeywords(array $keywords)
public function setKeywords(array $keywords): void
{
$this->keywords = $keywords;
}
@@ -35,7 +35,7 @@ abstract class Subject extends Multiprogramming
/**
* @param $templateId
*/
public function setTemplateId($templateId)
public function setTemplateId($templateId): void
{
$this->templateId = $templateId;
}
@@ -43,7 +43,7 @@ abstract class Subject extends Multiprogramming
/**
* @param $openId
*/
public function setOpenId($openId)
public function setOpenId($openId): void
{
$this->openId = $openId;
}
@@ -51,7 +51,7 @@ abstract class Subject extends Multiprogramming
/**
* @param $page
*/
public function setPage($page)
public function setPage($page): void
{
$this->page = $page;
}
@@ -59,7 +59,7 @@ abstract class Subject extends Multiprogramming
/**
* @param $emphasis_keyword
*/
public function setEmphasisKeyword($emphasis_keyword)
public function setEmphasisKeyword($emphasis_keyword): void
{
$this->emphasis_keyword = $emphasis_keyword;
}
@@ -69,7 +69,7 @@ abstract class Subject extends Multiprogramming
* @param $context
* @param string $color
*/
public function replaceKeyword($index, $context, string $color = '')
public function replaceKeyword($index, $context, string $color = ''): void
{
if (empty($color)) {
$color = '#000';
@@ -85,7 +85,7 @@ abstract class Subject extends Multiprogramming
* @param $color
* @param $context
*/
public function addKeyword($context, $color = null)
public function addKeyword($context, $color = null): void
{
if (empty($color)) {
$color = '#000';
@@ -135,7 +135,7 @@ abstract class Subject extends Multiprogramming
/**
* @return Result
* @throws \Exception
* @throws
*/
public function sendTemplate(): Result
{
@@ -158,7 +158,7 @@ abstract class Subject extends Multiprogramming
if (!empty($this->use_robot)) {
$params['use_robot'] = $this->use_robot;
}
$this->reset($result);
$this->reset();
$client = new Client($this->getHost(), 443, true);
$client->withHeader(['Content-Type' => 'application/json; charset=utf-8']);
@@ -184,17 +184,14 @@ abstract class Subject extends Multiprogramming
}
/**
* @param $result
* @return mixed
* @return void
*/
public function reset($result)
public function reset(): void
{
$this->openId = '';
$this->keywords = [];
$this->templateId = '';
$this->page = '';
return $result;
}
}