for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Viktoras\Scryfall\Client\Request\Cards;
class CardsBySet extends Search
{
/**
* @var string
*/
protected $order = self::SORTING_ORDER_SET;
protected $dir = self::SORTING_DIRECTION_ASC;
public function __construct(string $setCode)
$query = 'set:' . $setCode;
parent::__construct($query);
}