1 | <?php |
||
24 | class RemoveAssetMappingEvent extends Event |
||
25 | { |
||
26 | /** |
||
27 | * @var AssetMapping |
||
28 | */ |
||
29 | private $mapping; |
||
30 | |||
31 | /** |
||
32 | * Creates the event. |
||
33 | * |
||
34 | * @param AssetMapping $mapping The asset mapping. |
||
35 | */ |
||
36 | 3 | public function __construct(AssetMapping $mapping) |
|
40 | |||
41 | /** |
||
42 | * Returns the removed asset mapping. |
||
43 | * |
||
44 | * @return AssetMapping The asset mapping. |
||
45 | */ |
||
46 | public function getAssetMapping() |
||
50 | } |
||
51 |