Skip to content

Instantly share code, notes, and snippets.

@merltron-pa
Last active November 16, 2020 15:53
Show Gist options
  • Save merltron-pa/41266dc1d0f2df7867149eeca92a53d9 to your computer and use it in GitHub Desktop.
Save merltron-pa/41266dc1d0f2df7867149eeca92a53d9 to your computer and use it in GitHub Desktop.
PHP/JMS Article: Create basic entity
<?php
namespace App\Entity;
class TestAddress
{
/** @var string */
private $name;
/** @var string */
private $lineOne;
/** @var string */
private $lineTwo;
/** @var string */
private $lineThree;
/** @var string */
private $postcode;
/** @var string */
private $country;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment