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) |
||
45 | |||
46 | /** |
||
47 | * A structured list may provide its own set of default options. These |
||
48 | * will be used in place of the command's default options (from the |
||
49 | * annotations) in instances where the user does not provide the options |
||
50 | * explicitly (on the commandline) or implicitly (via a configuration file). |
||
51 | * |
||
52 | * @return array |
||
53 | */ |
||
54 | protected function defaultOptions() |
||
61 | } |
||
62 |