for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MauroMoreno\DataFactory\Entity;
/**
* Class Category
*
* @package MauroMoreno\DataFactory\Entity
*/
class Team
{
* @var int
public $id;
public $country_id;
public $goals;
public $penalty_goals;
* @var string
public $service;
public $short_name;
* @return int
public function getId(): int
return $this->id;
}
* @param int $id
* @return Team
public function setId(int $id): Team
$this->id = $id;
return $this;
public function getCountryId(): int
return $this->country_id;
* @param int $country_id
public function setCountryId(int $country_id): Team
$this->country_id = $country_id;
public function getGoals(): int
return $this->goals;
* @param int $goals
public function setGoals(int $goals): Team
$this->goals = $goals;
public function getPenaltyGoals(): int
return $this->penalty_goals;
* @param int $penalty_goals
public function setPenaltyGoals(int $penalty_goals): Team
$this->penalty_goals = $penalty_goals;
* @return string
public function getService(): string
return $this->service;
* @param string $service
public function setService(string $service): Team
$this->service = $service;
public function getShortName(): string
return $this->short_name;
* @param string $short_name
public function setShortName(string $short_name): Team
$this->short_name = $short_name;