fix phpstan level 2 and below issues

This commit is contained in:
2022-07-21 00:33:29 +02:00
parent ff0784ce46
commit c8ca412c14
6 changed files with 9 additions and 8 deletions

View File

@ -29,7 +29,7 @@ use ReflectionException;
class SenderTest extends ApiTestCase
{
/** @var Sender */
/** @var Sender|MockObject */
public $sender;
private $phoneNumberFixture;
@ -48,7 +48,6 @@ class SenderTest extends ApiTestCase
$example = $phoneUtil->getExampleNumberForType($this->phoneCountryFixture, PhoneNumberType::MOBILE);
$this->phoneNumberFixture = $phoneUtil->format($example, PhoneNumberFormat::NATIONAL);
/** @var Sender|MockObject sender */
$this->sender = new Sender($this->phoneNumberFixture, $this->phoneCountryFixture);
}