drop PHP 7 support

# Conflicts:
#	Tests/Unit/Production/IsMockableTest.php
This commit is contained in:
2024-02-01 08:30:06 +01:00
parent 8f21a232b3
commit be4daabc48
8 changed files with 59 additions and 68 deletions

View File

@ -18,13 +18,13 @@ namespace D3\TestingTools\Tests\Unit\Development\HelperClasses;
class CanAccessRestrictedClass
{
/** @var string */
public $publicProperty = 'publicProperty';
public string $publicProperty = 'publicProperty';
/** @var string */
protected $protectedProperty = 'protectedProperty';
protected string $protectedProperty = 'protectedProperty';
/** @var string */
private $privateProperty = 'privateProperty';
private string $privateProperty = 'privateProperty';
/**
* @param string $arg