| 1 | <?php |
||
| 31 | class AttributeDetails |
||
| 32 | { |
||
| 33 | const MODE_ALL = "ALL"; |
||
| 34 | |||
| 35 | const MODE_SELECTIVE = "SEL"; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * self::MODE_* |
||
| 39 | * |
||
| 40 | * @var string |
||
| 41 | */ |
||
| 42 | public $attributeType; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * AttributeDetails constructor. |
||
| 46 | * |
||
| 47 | * @param string $attributeType |
||
| 48 | */ |
||
| 49 | public function __construct($attributeType) |
||
| 53 | } |
||
| 54 |