Added missing implements JsonSerializable on VisitLocation that got lost when VisitLocationInterface was removed

This commit is contained in:
Alejandro Celaya 2022-07-18 20:23:27 +02:00
parent abd9f3c6be
commit c4b30db82d

View File

@ -4,11 +4,12 @@ declare(strict_types=1);
namespace Shlinkio\Shlink\Core\Entity;
use JsonSerializable;
use Shlinkio\Shlink\Common\Entity\AbstractEntity;
use Shlinkio\Shlink\Importer\Model\ImportedShlinkVisitLocation;
use Shlinkio\Shlink\IpGeolocation\Model\Location;
class VisitLocation extends AbstractEntity
class VisitLocation extends AbstractEntity implements JsonSerializable
{
private string $countryCode;
private string $countryName;