Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/MartinGeorgiev/Doctrine/DBAL/Types/BaseArrayTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ class BaseArrayTest extends TestCase
/**
* @var AbstractPlatform&MockObject
*/
private AbstractPlatform $platform;
private MockObject $platform;

/**
* @var BaseArray&MockObject
*/
private BaseArray $fixture;
private MockObject $fixture;

protected function setUp(): void
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class BaseNetworkTypeArrayTest extends TestCase
/**
* @var AbstractPlatform&MockObject
*/
private AbstractPlatform $platform;
private MockObject $platform;

private BaseNetworkTypeArray $fixture;

Expand Down
2 changes: 1 addition & 1 deletion tests/MartinGeorgiev/Doctrine/DBAL/Types/BaseTypeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class BaseTypeTest extends TestCase
/**
* @var AbstractPlatform&MockObject
*/
private AbstractPlatform $platform;
private MockObject $platform;

protected function setUp(): void
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class BooleanArrayTest extends TestCase
/**
* @var AbstractPlatform&MockObject
*/
private AbstractPlatform $platform;
private MockObject $platform;

private BooleanArray $fixture;

Expand Down
2 changes: 1 addition & 1 deletion tests/MartinGeorgiev/Doctrine/DBAL/Types/CidrArrayTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class CidrArrayTest extends TestCase
/**
* @var AbstractPlatform&MockObject
*/
private AbstractPlatform $platform;
private MockObject $platform;

private CidrArray $fixture;

Expand Down
2 changes: 1 addition & 1 deletion tests/MartinGeorgiev/Doctrine/DBAL/Types/CidrTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class CidrTest extends TestCase
/**
* @var AbstractPlatform&MockObject
*/
private AbstractPlatform $platform;
private MockObject $platform;

private Cidr $fixture;

Expand Down
2 changes: 1 addition & 1 deletion tests/MartinGeorgiev/Doctrine/DBAL/Types/InetArrayTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class InetArrayTest extends TestCase
/**
* @var AbstractPlatform&MockObject
*/
private AbstractPlatform $platform;
private MockObject $platform;

private InetArray $fixture;

Expand Down
2 changes: 1 addition & 1 deletion tests/MartinGeorgiev/Doctrine/DBAL/Types/InetTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class InetTest extends TestCase
/**
* @var AbstractPlatform&MockObject
*/
private AbstractPlatform $platform;
private MockObject $platform;

private Inet $fixture;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class JsonbArrayTest extends TestCase
/**
* @var AbstractPlatform&MockObject
*/
private AbstractPlatform $platform;
private MockObject $platform;

private JsonbArray $fixture;

Expand Down
2 changes: 1 addition & 1 deletion tests/MartinGeorgiev/Doctrine/DBAL/Types/JsonbTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class JsonbTest extends TestCase
/**
* @var AbstractPlatform&MockObject
*/
private AbstractPlatform $platform;
private MockObject $platform;

private Jsonb $fixture;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class MacaddrArrayTest extends TestCase
/**
* @var AbstractPlatform&MockObject
*/
private AbstractPlatform $platform;
private MockObject $platform;

private MacaddrArray $fixture;

Expand Down
2 changes: 1 addition & 1 deletion tests/MartinGeorgiev/Doctrine/DBAL/Types/MacaddrTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class MacaddrTest extends TestCase
/**
* @var AbstractPlatform&MockObject
*/
private AbstractPlatform $platform;
private MockObject $platform;

private Macaddr $fixture;

Expand Down
2 changes: 1 addition & 1 deletion tests/MartinGeorgiev/Doctrine/DBAL/Types/TextArrayTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class TextArrayTest extends TestCase
/**
* @var AbstractPlatform&MockObject
*/
private AbstractPlatform $platform;
private MockObject $platform;

private TextArray $fixture;

Expand Down
Loading