| 1 | <?php |
||
| 5 | class Segment extends Entity |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @param array $array |
||
| 9 | */ |
||
| 10 | 15 | public function __construct(array $array = []) |
|
| 14 | |||
| 15 | /** |
||
| 16 | * Gets the 'id' parameter. |
||
| 17 | * |
||
| 18 | * @return string The Identifier of the Segment |
||
| 19 | */ |
||
| 20 | 15 | public function getId() |
|
| 24 | |||
| 25 | /** |
||
| 26 | * Gets the 'name' parameter. |
||
| 27 | * |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | 15 | public function getName() |
|
| 34 | |||
| 35 | /** |
||
| 36 | * Gets the 'description' parameter. |
||
| 37 | * |
||
| 38 | * @return string The Description of the Goal |
||
| 39 | */ |
||
| 40 | 15 | public function getDescription() |
|
| 44 | } |
||
| 45 |