Add interface and implementing classes for the maps. #221

This commit is contained in:
Korina Cordero 2019-06-06 07:19:57 +00:00
parent f14f17543d
commit 612c9327d6
3 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,7 @@
<?php
namespace App\Service;
class BingMapManager
{
}

View file

@ -0,0 +1,7 @@
<?php
namespace App\Service;
class GoogleMapManager
{
}

View file

@ -0,0 +1,12 @@
<?php
namespace App\Service;
interface MapManagerInterface
{
/*
* Return a map to be used to display location
*
*/
public function jsDisplayMap();
}