Skip to content

Instantly share code, notes, and snippets.

@radimvaculik
Created August 11, 2020 08:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radimvaculik/6153123e3ef373c04632b2cb4218a602 to your computer and use it in GitHub Desktop.
Save radimvaculik/6153123e3ef373c04632b2cb4218a602 to your computer and use it in GitHub Desktop.
JsonMapper example
<?php
declare(strict_types = 1);
namespace App\Data\User\Model;
class User
{
public int $id;
public UserRole $role;
}
<?php
declare(strict_types = 1);
namespace App\Data\User\Model;
class UserRole
{
public string $name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment