1 | <?php |
||
31 | class SelectionDetails |
||
32 | { |
||
33 | /** |
||
34 | * Standard history |
||
35 | */ |
||
36 | const OPT_STANDARD = "S"; |
||
37 | |||
38 | /** |
||
39 | * Filters out redundant elements from history |
||
40 | */ |
||
41 | const OPT_FILTER_REDUNDANT = "F"; |
||
42 | |||
43 | /** |
||
44 | * self::OPT_* |
||
45 | * |
||
46 | * @var string |
||
47 | */ |
||
48 | public $option; |
||
49 | |||
50 | /** |
||
51 | * SelectionDetails constructor. |
||
52 | * |
||
53 | * @param string $option self::OPT_* |
||
54 | */ |
||
55 | public function __construct($option) |
||
59 | } |
||
60 |