mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-14 15:56:48 +03:00
Require phpstan and correct issues found up to level 2
* issues found by phpstan L0 * issues found by phpstan L1 * issues found by phpstan L2 in src/ * issues found by phpstan L2 in tests/
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
|
||||
namespace Ramsey\Uuid\Test\Codec;
|
||||
|
||||
use PHPUnit\Framework\MockObject\MockObject;
|
||||
use Ramsey\Uuid\Builder\UuidBuilderInterface;
|
||||
use Ramsey\Uuid\Codec\GuidStringCodec;
|
||||
use Ramsey\Uuid\Test\TestCase;
|
||||
@@ -14,11 +15,12 @@ use Ramsey\Uuid\UuidInterface;
|
||||
*/
|
||||
class GuidStringCodecTest extends TestCase
|
||||
{
|
||||
|
||||
/** @var UuidBuilderInterface */
|
||||
/** @var UuidBuilderInterface&MockObject */
|
||||
private $builder;
|
||||
/** @var UuidInterface */
|
||||
|
||||
/** @var UuidInterface&MockObject */
|
||||
private $uuid;
|
||||
|
||||
/** @var array */
|
||||
private $fields;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user