for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Viktoras\Scryfall\Client\Request\Sets;
use Viktoras\Scryfall\Client\Request\AbstractRequest;
class SetsList extends AbstractRequest
{
public function getQuery(): string
return 'sets?' . http_build_query(
[
'format' => $this->format,
'pretty' => $this->pretty
]
);
}