for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Stu\Module\Trade\Action\PirateProtection;
use Stu\Lib\Request\CustomControllerHelperTrait;
final class PirateProtectionRequest implements PirateProtectionRequestInterface
{
use CustomControllerHelperTrait;
public function getPrestige(): int
return $this->queryParameter('prestige')->int()->defaultsTo(0);
}