1: <?php
2:
3: namespace PHPixie\Slice;
4:
5: interface Data extends \IteratorAggregate
6: {
7: public function get($path = null, $default = null);
8: public function getRequired($path = null);
9: public function getData($path = null, $isRequired = false, $default = null);
10:
11: public function keys($path = null, $isRequired = false);
12: public function slice($path = null);
13: public function arraySlice($path = null);
14: }
15: