mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-15 13:25:30 +01:00
15 lines
154 B
PHP
15 lines
154 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Ramsey\Uuid;
|
|
|
|
if (interface_exists('Ramsey\Uuid\UuidInterface')) {
|
|
return;
|
|
}
|
|
|
|
interface UuidInterface
|
|
{
|
|
|
|
}
|