Files
contao-leaflet-geocode-widget/src/GeocodeWidget.php
2022-11-29 11:05:30 +01:00

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
}
}