1 | <?php |
||
32 | class OptionSubject extends AbstractAttributeSubject |
||
33 | { |
||
34 | |||
35 | /** |
||
36 | * The ID of the option that has been created recently. |
||
37 | * |
||
38 | * @var integer |
||
39 | */ |
||
40 | protected $lastOptionId; |
||
41 | |||
42 | /** |
||
43 | * Return's the ID of the attribute that has been created recently. |
||
44 | * |
||
45 | * @return integer The attribute ID |
||
46 | */ |
||
47 | public function getLastEntityId() |
||
51 | |||
52 | /** |
||
53 | * Set's the ID of the option that has been created recently. |
||
54 | * |
||
55 | * @param integer $lastOptionId The option ID |
||
56 | * |
||
57 | * @return void |
||
58 | */ |
||
59 | public function setLastOptionId($lastOptionId) |
||
63 | |||
64 | /** |
||
65 | * Return's the ID of the option that has been created recently. |
||
66 | * |
||
67 | * @return integer The option ID |
||
68 | */ |
||
69 | public function getLastOptionId() |
||
73 | } |
||
74 |