11 lines
108 B
PHP
11 lines
108 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Teamtable;
|
||
|
|
||
|
/**
|
||
|
* Represents a team in the teamtable
|
||
|
*/
|
||
|
class Team
|
||
|
{
|
||
|
// TODO...
|
||
|
}
|