1 | <?php |
||
12 | class SerializableArrayObjectAsset extends ArrayObject implements Serializable |
||
13 | { |
||
14 | /** |
||
15 | * Constructor - should not be called |
||
16 | * |
||
17 | * @throws BadMethodCallException |
||
18 | */ |
||
19 | public function __construct() |
||
23 | |||
24 | /** |
||
25 | * {@inheritDoc} |
||
26 | */ |
||
27 | public function serialize() |
||
31 | |||
32 | /** |
||
33 | * {@inheritDoc} |
||
34 | * |
||
35 | * Should not be called |
||
36 | * |
||
37 | * @throws BadMethodCallException |
||
38 | */ |
||
39 | public function unserialize($serialized) |
||
43 | } |
||
44 |