mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-14 15:56:48 +03:00
0d7b8c2b7a
This also includes heavy use of slevomat/coding-standard to apply various checks to the code, based on maintainer (me) preference.
21 lines
391 B
PHP
21 lines
391 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Ramsey\Uuid\Test\Generator;
|
|
|
|
use Ramsey\Uuid\Test\TestCase;
|
|
|
|
class PeclUuidTestCase extends TestCase
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $uuidString = 'b08c6fff-7dc5-e111-9b21-0800200c9a66';
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $uuidBinary = '62303863366666662d376463352d653131312d396232312d303830303230306339613636';
|
|
}
|