Response.php
333 字节
<?php
namespace Lackoxygen\TiktokOpen\Base\Event;
use Illuminate\Foundation\Events\Dispatchable;
use Psr\Http\Message\ResponseInterface;
class Response
{
use Dispatchable;
public ResponseInterface $response;
public function __construct(ResponseInterface $response)
{
$this->response = $response;
}
}