for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace ChangelogGenerator;
class IssueClientResponse
{
/** @var mixed[] */
private $body;
/** @var string|null */
private $nextUrl;
/**
* @param mixed[] $body
*/
public function __construct(array $body, ?string $nextUrl)
$this->body = $body;
$this->nextUrl = $nextUrl;
}
* @return mixed[]
public function getBody() : array
return $this->body;
public function getNextUrl() : ?string
return $this->nextUrl;