| 1 |
<?php |
| 2 |
/** |
| 3 |
* GeographDE.php |
| 4 |
* |
| 5 |
* @package Embera |
| 6 |
* @author Michael Pratt <yo@michael-pratt.com> |
| 7 |
* @link http://www.michael-pratt.com/ |
| 8 |
* |
| 9 |
* For the full copyright and license information, please view the LICENSE |
| 10 |
* file that was distributed with this source code. |
| 11 |
*/ |
| 12 |
|
| 13 |
namespace Embera\Provider; |
| 14 |
|
| 15 |
/** |
| 16 |
* GeographDE Provider |
| 17 |
* @link https://geo-en.hlipp.de |
| 18 |
*/ |
| 19 |
class GeographDE extends GeographUk |
| 20 |
{ |
| 21 |
/** inline {@inheritdoc} */ |
| 22 |
protected $endpoint = 'https://geo.hlipp.de/restapi.php/api/oembed?format=json'; |
| 23 |
|
| 24 |
/** inline {@inheritdoc} */ |
| 25 |
protected static $hosts = [ |
| 26 |
'*.hlipp.de', 'germany.geograph.org' |
| 27 |
]; |
| 28 |
|
| 29 |
/** inline {@inheritdoc} */ |
| 30 |
protected $httpsSupport = true; |
| 31 |
} |
| 32 |
|