13 lines
194 B
PHP
13 lines
194 B
PHP
<?php
|
|
|
|
namespace App\Service;
|
|
|
|
class BingMapManager implements MapManagerInterface
|
|
{
|
|
const MANAGER = 'bing';
|
|
|
|
public function getMapManager()
|
|
{
|
|
return self::MANAGER;
|
|
}
|
|
}
|