1 | <?php |
||
10 | class AbstractListData extends \ArrayObject implements ListDataInterface |
||
11 | { |
||
12 | public function __construct($data) |
||
16 | |||
17 | public function getListData(FormatterOptions $options) |
||
21 | |||
22 | protected function getReorderedFieldLabels($data, $options, $defaults) |
||
32 | |||
33 | protected function getFields($options, $defaults) |
||
52 | |||
53 | /** |
||
54 | * A structured list may provide its own set of default options. These |
||
55 | * will be used in place of the command's default options (from the |
||
56 | * annotations) in instances where the user does not provide the options |
||
57 | * explicitly (on the commandline) or implicitly (via a configuration file). |
||
58 | * |
||
59 | * @return array |
||
60 | */ |
||
61 | protected function defaultOptions() |
||
68 | } |
||
69 |