KamranAhmed\Smasher\JsonResponse::decode PHP 메소드

decode() 공개 메소드

Decodes the passed string and creates array from it
public decode ( string $response ) : array
$response string The existing response which is to be decoded to array
리턴 array
    public function decode($response)
    {
        return json_decode($response, true);
    }
JsonResponse