platform notify
This commit is contained in:
23
app/Bean/Service/HttpServiceConfigBean.php
Normal file
23
app/Bean/Service/HttpServiceConfigBean.php
Normal file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
namespace App\Bean\Service;
|
||||
|
||||
use App\Bean\Model\Base\BaseBean;
|
||||
|
||||
class HttpServiceConfigBean extends BaseBean
|
||||
{
|
||||
protected bool $is_return_json = true;
|
||||
|
||||
public function isIsReturnJson(): bool
|
||||
{
|
||||
return $this->is_return_json;
|
||||
}
|
||||
|
||||
public function setIsReturnJson(bool $is_return_json): void
|
||||
{
|
||||
$this->is_return_json = $is_return_json;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user