Team
extends Base
in package
implements
Exportable
Uses
HasScore, HasPositions
Class that identifies a team and holds the scores from the whole tournament.
Tags
Interfaces, Classes and Traits
- Exportable
- Interface Exportable
Table of Contents
- $groupResults : array<string|int, mixed>
- $games : array<string|int, mixed>
- $gamesWith : array<string|int, mixed>
- $id : string|int
- $name : string
- $sumPoints : int
- $sumScore : int
- __construct() : mixed
- Initiates a team class
- __toString() : string
- addDraw() : $this
- Adds a draw to the team
- addGame() : $this
- Adds a game to this team
- addGameWith() : $this
- Adds a record of a game with another team in a group
- addGroup() : $this
- Adds a group to a team and creates an array for all games to be played
- addGroupResults() : $this
- Creates a new data-array to store statistics for a new group
- addLoss() : $this
- Adds a loss to the team
- addPoints() : $this
- Adds points to the total sum
- addScore() : $this
- Adds score to the total sum
- addSecond() : $this
- Add points for being second to the team
- addThird() : $this
- Add points for being third to the team
- addWin() : $this
- Adds a win to the team
- export() : ExporterInterface
- Prepares an export query for the object
- getGames() : array<string|int, mixed>
- Gets all game from given group
- getGamesInfo() : array<string|int, mixed>
- Gets team statistics from the given group without the group object
- getGameWith() : array<string|int, mixed>|int
- Gets a record of a game with another team or teams
- getGroupResults() : array<string|int, mixed>
- Gets team statistics from the given group
- getId() : string|int
- Gets the unique identifier of the object
- getName() : string
- Gets the name of the object
- getSumPoints() : int
- Gets all points that the team has acquired through the tournament
- getSumScore() : int
- Gets all score that the team has acquired through the tournament
- removeDraw() : $this
- Remove a draw from the team
- removeLoss() : $this
- Remove a loss from the team
- removePoints() : $this
- Removes points to the total sum
- removeScore() : $this
- Removes score to the total sum
- removeSecond() : $this
- Remove points for being second from the team
- removeThird() : $this
- Remove points for being third from the team
- removeWin() : $this
- Remove a win from the team
- setId() : self
- Sets the unique identifier of the object
- setName() : self
- Sets the name of the object
- sumPoints() : int
- Calculate all the points acquired from given group ids
- sumScore() : int
- Calculate all score acquired from given group ids
Properties
$groupResults
public
array<string|int, mixed>
$groupResults
= []
Tags
$games
protected
array<string|int, mixed>
$games
= []
$gamesWith
protected
array<string|int, mixed>
$gamesWith
= []
$id
protected
string|int
$id
$name
protected
string
$name
= ''
$sumPoints
protected
int
$sumPoints
= 0
$sumScore
protected
int
$sumScore
= 0
Methods
__construct()
Initiates a team class
public
__construct([string $name = 'team' ][, string|int $id = null ]) : mixed
Parameters
- $name : string = 'team'
-
Name of the team
- $id : string|int = null
-
Unique identifier of the team
Tags
Return values
mixed —__toString()
public
__toString() : string
Return values
string —Name of the object
addDraw()
Adds a draw to the team
public
addDraw([string|int|null $groupId = '' ]) : $this
Parameters
- $groupId : string|int|null = ''
-
An id of group to add the results from
Tags
Return values
$this —addGame()
Adds a game to this team
public
addGame(Game $game) : $this
Parameters
- $game : Game
-
A game to add
Return values
$this —addGameWith()
Adds a record of a game with another team in a group
public
addGameWith(Team $team, Group $group) : $this
Parameters
- $team : Team
-
A team that played with this team
- $group : Group
-
A group that the teams were playing in
Return values
$this —addGroup()
Adds a group to a team and creates an array for all games to be played
public
addGroup(Group $group) : $this
Parameters
- $group : Group
-
A group to add
Return values
$this —addGroupResults()
Creates a new data-array to store statistics for a new group
public
addGroupResults(Group $group) : $this
Resets the statistics if the group was already added
Parameters
- $group : Group
-
A group object to add its results
Return values
$this —addLoss()
Adds a loss to the team
public
addLoss([string|int|null $groupId = '' ]) : $this
Parameters
- $groupId : string|int|null = ''
-
An id of group to add the results from
Tags
Return values
$this —addPoints()
Adds points to the total sum
public
addPoints(int $points) : $this
Parameters
- $points : int
-
Points to add
Return values
$this —addScore()
Adds score to the total sum
public
addScore(int $score) : $this
Parameters
- $score : int
-
Score to add
Return values
$this —addSecond()
Add points for being second to the team
public
addSecond([string|int|null $groupId = '' ]) : $this
Parameters
- $groupId : string|int|null = ''
-
An id of group to add the results from
Tags
Return values
$this —addThird()
Add points for being third to the team
public
addThird([string|int|null $groupId = '' ]) : $this
Parameters
- $groupId : string|int|null = ''
-
An id of group to add the results from
Tags
Return values
$this —addWin()
Adds a win to the team
public
addWin([string|int|null $groupId = '' ]) : $this
Parameters
- $groupId : string|int|null = ''
-
An id of group to add the results from
Tags
Return values
$this —export()
Prepares an export query for the object
public
export() : ExporterInterface
Return values
ExporterInterface —Exporter for this class
getGames()
Gets all game from given group
public
getGames([Group|null $group = null ][, string|int|null $groupId = null ]) : array<string|int, mixed>
Parameters
- $group : Group|null = null
-
A group to get its game from
- $groupId : string|int|null = null
-
An id of group to get its game from
Return values
array<string|int, mixed> —Games from a group or all games if both arguments are null
getGamesInfo()
Gets team statistics from the given group without the group object
public
getGamesInfo(string|int $groupId) : array<string|int, mixed>
Parameters
- $groupId : string|int
-
Unique identifier of the group to get its results
Tags
Return values
array<string|int, mixed> —All the statistics including points, score, wins, draws, losses, times being second, times being third
getGameWith()
Gets a record of a game with another team or teams
public
getGameWith([Team|null $team = null ][, Group|null $group = null ]) : array<string|int, mixed>|int
Parameters
- $team : Team|null = null
-
A team to get the games with
- $group : Group|null = null
-
A group from where to get the games
Return values
array<string|int, mixed>|int —The number of games played with a team in a group if both arguments are given, array of all games with all teams from a group if only group is given, array of games with team from all groups if only a team argument is given or all games with all teams from all groups if no argument is given
getGroupResults()
Gets team statistics from the given group
public
getGroupResults([string|int|null $groupId = null ]) : array<string|int, mixed>
Parameters
- $groupId : string|int|null = null
-
Unique identifier of the group to get its results
Tags
Return values
array<string|int, mixed> —All the statistics including points, score, wins, draws, losses, times being second, times being third if the group id is set or all the statistics
getId()
Gets the unique identifier of the object
public
getId() : string|int
Return values
string|int —Unique identifier of the object
getName()
Gets the name of the object
public
getName() : string
Return values
string —Name of the object
getSumPoints()
Gets all points that the team has acquired through the tournament
public
getSumPoints() : int
Return values
int —Sum of the points acquired
getSumScore()
Gets all score that the team has acquired through the tournament
public
getSumScore() : int
Return values
int —Sum of the score acquired
removeDraw()
Remove a draw from the team
public
removeDraw([string|int|null $groupId = '' ]) : $this
Parameters
- $groupId : string|int|null = ''
-
An id of group to add the results from
Tags
Return values
$this —removeLoss()
Remove a loss from the team
public
removeLoss([string|int|null $groupId = '' ]) : $this
Parameters
- $groupId : string|int|null = ''
-
An id of group to add the results from
Tags
Return values
$this —removePoints()
Removes points to the total sum
public
removePoints(int $points) : $this
Parameters
- $points : int
-
Points to remove
Return values
$this —removeScore()
Removes score to the total sum
public
removeScore(int $score) : $this
Parameters
- $score : int
-
Score to add
Return values
$this —removeSecond()
Remove points for being second from the team
public
removeSecond([string|int|null $groupId = '' ]) : $this
Parameters
- $groupId : string|int|null = ''
-
An id of group to add the results from
Tags
Return values
$this —removeThird()
Remove points for being third from the team
public
removeThird([string|int|null $groupId = '' ]) : $this
Parameters
- $groupId : string|int|null = ''
-
An id of group to add the results from
Tags
Return values
$this —removeWin()
Remove a win from the team
public
removeWin([string|int|null $groupId = '' ]) : $this
Parameters
- $groupId : string|int|null = ''
-
An id of group to add the results from
Tags
Return values
$this —setId()
Sets the unique identifier of the object
public
setId(string|int $id) : self
Parameters
- $id : string|int
-
Unique identifier of the object
Tags
Return values
self —setName()
Sets the name of the object
public
setName(string $name) : self
Parameters
- $name : string
-
Name of the object
Return values
self —sumPoints()
Calculate all the points acquired from given group ids
public
sumPoints([array<string|int, mixed> $groupIds = [] ]) : int
Parameters
- $groupIds : array<string|int, mixed> = []
-
Array of group ids
Return values
int —Sum of the points or sum of all points if argument is empty
sumScore()
Calculate all score acquired from given group ids
public
sumScore([array<string|int, mixed> $groupIds = [] ]) : int
Parameters
- $groupIds : array<string|int, mixed> = []
-
Array of group ids
Return values
int —Sum of score or sum of all score if argument is empty