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