Exercise: Fix class definition conflict only in parkur by importing part of commit a627bd47b2 -refs BT#19485
parent
df3b654274
commit
dfc2a7be5e
@ -0,0 +1,20 @@ |
||||
<?php |
||||
/* For licensing terms, see /license.txt */ |
||||
|
||||
/** |
||||
* Class HotSpotDelineation. |
||||
*/ |
||||
class HotSpotDelineation extends HotSpot |
||||
{ |
||||
public $typePicture = 'hotspot-delineation.png'; |
||||
public $explanationLangVar = 'HotspotDelineation'; |
||||
|
||||
/** |
||||
* HotSpotDelineation constructor. |
||||
*/ |
||||
public function __construct() |
||||
{ |
||||
parent::__construct(); |
||||
$this->type = HOT_SPOT_DELINEATION; |
||||
} |
||||
} |
||||
Loading…
Reference in new issue