mirror of
https://git.yoomoney.ru/scm/sdk/yookassa-sdk-php.git
synced 2026-08-22 05:34:04 +00:00
19 lines
456 B
PHP
19 lines
456 B
PHP
<?php
|
|
|
|
namespace Tests\YooKassa\Common\Exceptions;
|
|
|
|
use YooKassa\Common\Exceptions\EmptyPropertyValueException;
|
|
|
|
class EmptyPropertyValueExceptionTest extends InvalidPropertyExceptionTest
|
|
{
|
|
/**
|
|
* @param string $message
|
|
* @param string $property
|
|
* @return EmptyPropertyValueException
|
|
*/
|
|
protected function getTestInstance($message, $property)
|
|
{
|
|
return new EmptyPropertyValueException($message, 0, $property);
|
|
}
|
|
}
|