mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 08:56:42 -06:00
Added missing implements JsonSerializable on VisitLocation that got lost when VisitLocationInterface was removed
This commit is contained in:
parent
abd9f3c6be
commit
c4b30db82d
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user