Index: trunk/extensions/Maps/Services/iMappingService.php |
— | — | @@ -69,15 +69,6 @@ |
70 | 70 | function addFeature( $featureName, $handlingClass ); |
71 | 71 | |
72 | 72 | /** |
73 | | - * Adds the mapping services dependencies to the header. |
74 | | - * |
75 | | - * @since 0.6.5 |
76 | | - * |
77 | | - * @param mixed $parserOrOut |
78 | | - */ |
79 | | - function addDependencies( &$parserOrOut ); |
80 | | - |
81 | | - /** |
82 | 73 | * Returns the html for the needed dependencies or false. |
83 | 74 | * |
84 | 75 | * @since 0.6.5 |
Index: trunk/extensions/Maps/Features/DisplayPoint/Maps_BasePointMap.php |
— | — | @@ -24,7 +24,10 @@ |
25 | 25 | */ |
26 | 26 | abstract class MapsBasePointMap implements iMappingParserFunction { |
27 | 27 | |
28 | | - public $service; |
| 28 | + /** |
| 29 | + * @var iMappingService |
| 30 | + */ |
| 31 | + protected $service; |
29 | 32 | |
30 | 33 | protected $centreLat, $centreLon; |
31 | 34 | protected $markerJs; |
— | — | @@ -40,7 +43,7 @@ |
41 | 44 | private $specificParameters = false; |
42 | 45 | private $markerData = array(); |
43 | 46 | |
44 | | - public function __construct( MapsMappingService $service ) { |
| 47 | + public function __construct( iMappingService $service ) { |
45 | 48 | $this->service = $service; |
46 | 49 | } |
47 | 50 | |
Index: trunk/extensions/Maps/Features/DisplayMap/Maps_BaseMap.php |
— | — | @@ -24,6 +24,9 @@ |
25 | 25 | */ |
26 | 26 | abstract class MapsBaseMap implements iMappingParserFunction { |
27 | 27 | |
| 28 | + /** |
| 29 | + * @var iMappingService |
| 30 | + */ |
28 | 31 | protected $service; |
29 | 32 | |
30 | 33 | protected $centreLat, $centreLon; |
— | — | @@ -40,7 +43,7 @@ |
41 | 44 | * |
42 | 45 | * @param MapsMappingService $service |
43 | 46 | */ |
44 | | - public function __construct( MapsMappingService $service ) { |
| 47 | + public function __construct( iMappingService $service ) { |
45 | 48 | $this->service = $service; |
46 | 49 | } |
47 | 50 | |