1 | <?php |
||
5 | class Segment extends \ArrayObject |
||
6 | { |
||
7 | use EntityTrait; |
||
8 | |||
9 | /** |
||
10 | * @param array $array |
||
11 | */ |
||
12 | public function __construct(array $array = []) |
||
16 | |||
17 | /** |
||
18 | * Gets the 'id' parameter. |
||
19 | * |
||
20 | * @return string The Identifier of the Segment |
||
21 | */ |
||
22 | public function getId() |
||
26 | |||
27 | /** |
||
28 | * Gets the 'name' parameter. |
||
29 | * |
||
30 | * @return string |
||
31 | */ |
||
32 | public function getName() |
||
36 | |||
37 | /** |
||
38 | * Gets the 'description' parameter. |
||
39 | * |
||
40 | * @return string The Description of the Goal |
||
41 | */ |
||
42 | public function getDescription() |
||
46 | } |
||
47 |