Skip to content

Commit

Permalink
Add native property typehints
Browse files Browse the repository at this point in the history
  • Loading branch information
xificurk committed Dec 23, 2019
1 parent adde00b commit a292b01
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions tests/EmailAddressDoctrine/EmailAddressLowercaseTypeTest.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,10 @@ require_once __DIR__ . '/../bootstrap.php';
class EmailAddressLowercaseTypeTest extends TestCase
{

/** @var EmailAddressLowercaseType */
private $type;
private EmailAddressLowercaseType $type;

/** @var AbstractPlatform|MockInterface */
private $platform;
private AbstractPlatform $platform;

protected function setUp(): void
{
Expand Down
5 changes: 2 additions & 3 deletions tests/EmailAddressDoctrine/EmailAddressTypeTest.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,10 @@ require_once __DIR__ . '/../bootstrap.php';
class EmailAddressTypeTest extends TestCase
{

/** @var EmailAddressType */
private $type;
private EmailAddressType $type;

/** @var AbstractPlatform|MockInterface */
private $platform;
private AbstractPlatform $platform;

protected function setUp(): void
{
Expand Down

0 comments on commit a292b01

Please sign in to comment.