Merge pull request #1479 from acelaya-forks/feature/unknown-visits

Added missing implements JsonSerializable on VisitLocation that got l…
This commit is contained in:
Alejandro Celaya 2022-07-18 20:43:02 +02:00 committed by GitHub
commit 1aa9ae680e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;