1 | <?php |
||
9 | class TeamBuilder extends ModelBuilder |
||
10 | { |
||
11 | /** |
||
12 | * @param $name |
||
13 | * |
||
14 | * @return $this |
||
15 | */ |
||
16 | 1 | public function setName($name) |
|
22 | |||
23 | /** |
||
24 | * Set the Team type. |
||
25 | * |
||
26 | * @param $type |
||
27 | * |
||
28 | * @return $this |
||
29 | */ |
||
30 | 1 | public function setType($type) |
|
36 | |||
37 | /** |
||
38 | * Set the display name. |
||
39 | * |
||
40 | * @param $diplayName |
||
41 | * |
||
42 | * @return $this |
||
43 | */ |
||
44 | 1 | public function setDisplayName($diplayName) |
|
50 | |||
51 | /** |
||
52 | * {@inheritdoc} |
||
53 | */ |
||
54 | 4 | protected function getRequiredFields($buildType = self::BUILD_FOR_CREATE) |
|
63 | } |
||
64 |