mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-14 09:01:42 -04:00
14 lines
226 B
PHP
14 lines
226 B
PHP
<?php
|
|
|
|
namespace Modules\StudioPlus\Services;
|
|
|
|
use Illuminate\Http\Client\Response;
|
|
|
|
class HttpRequestResponseService
|
|
{
|
|
public function json(Response $response)
|
|
{
|
|
return $response->json();
|
|
}
|
|
}
|