1 | <?php |
||
10 | class UnCloneableAsset |
||
11 | { |
||
12 | /** |
||
13 | * Constructor - should not be called |
||
14 | * |
||
15 | * @throws BadMethodCallException |
||
16 | */ |
||
17 | public function __construct() |
||
21 | |||
22 | /** |
||
23 | * Magic `__clone` - should not be invoked |
||
24 | * |
||
25 | * @throws BadMethodCallException |
||
26 | */ |
||
27 | public function __clone() |
||
31 | } |
||
32 |