1 | <?php |
||
19 | abstract class Profile |
||
20 | { |
||
21 | /** |
||
22 | * @var string The profile id |
||
23 | */ |
||
24 | private $profileId; |
||
25 | |||
26 | /** |
||
27 | * @param string $profileId The id |
||
28 | */ |
||
29 | public function __construct($profileId) |
||
33 | |||
34 | /** |
||
35 | * Returns the profile id. |
||
36 | * |
||
37 | * @return string The id |
||
38 | */ |
||
39 | public function getProfileId() |
||
43 | } |
||
44 |