1 | <?php namespace Knot; |
||
19 | abstract class Dict extends AbstractDictBody { |
||
20 | |||
21 | /** |
||
22 | * Create Knot by reference. |
||
23 | * |
||
24 | * @param array &$data Knot data |
||
25 | * |
||
26 | * @return \Knot\Dict\ParentDict |
||
27 | */ |
||
28 | public static function createByReference(array &$data) |
||
32 | |||
33 | |||
34 | /** |
||
35 | * Create Knot without reference. |
||
36 | * |
||
37 | * @param array $data Knot data |
||
38 | * |
||
39 | * @return \Knot\Dict\ParentDict |
||
40 | */ |
||
41 | public static function create($data) |
||
45 | } |
||
46 |