for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\GameBetting\Persistence\DataProvider;
class ExtraResult
{
/**
* @var int
*/
private $type;
private $countryId;
* @param int $type
* @param int $countryId
public function __construct(int $type, int $countryId)
$this->type = $type;
$this->countryId = $countryId;
}
* @return int
public function getType(): int
return $this->type;
public function getCountryId(): int
return $this->countryId;