1 | <?php |
||
36 | class Alias implements AliasConfigurationInterface |
||
37 | { |
||
38 | |||
39 | /** |
||
40 | * The alias's unique DI identifier. |
||
41 | * |
||
42 | * @var string |
||
43 | * @Type("string") |
||
44 | * @SerializedName("id") |
||
45 | */ |
||
46 | protected $id; |
||
47 | |||
48 | /** |
||
49 | * The alias's target ID identifier. |
||
50 | * |
||
51 | * @var string |
||
52 | * @Type("string") |
||
53 | */ |
||
54 | protected $target; |
||
55 | |||
56 | /** |
||
57 | * Return's the alias unique DI identifier |
||
58 | * |
||
59 | * @return string The alias unique DI identifier |
||
60 | */ |
||
61 | public function getId() |
||
65 | |||
66 | /** |
||
67 | * Return's the alias target DI identifier. |
||
68 | * |
||
69 | * @return string The alias target ID identifier |
||
70 | */ |
||
71 | public function getTarget() |
||
75 | } |
||
76 |