mirror of
https://github.com/netzmacht/contao-leaflet-geocode-widget.git
synced 2025-12-01 21:23:40 +01:00
30 lines
707 B
PHP
30 lines
707 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Netzmacht\Contao\Leaflet\GeocodeWidget;
|
|
|
|
use Netzmacht\Contao\Leaflet\GeocodeWidget\Widget\GeocodeWidget as BaseWidget;
|
|
|
|
class GeocodeWidget extends BaseWidget
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function __construct(?array $arrAttributes = null)
|
|
{
|
|
parent::__construct($arrAttributes);
|
|
|
|
// @codingStandardsIgnoreStart
|
|
@trigger_error(
|
|
sprintf(
|
|
'"%s" is deprecated and will be removed in version 2.0.0. Use "%s" instead.',
|
|
GeocodeWidget::class,
|
|
BaseWidget::class
|
|
),
|
|
E_USER_DEPRECATED
|
|
);
|
|
// @codingStandardsIgnoreEnd
|
|
}
|
|
}
|