mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-26 17:46:38 +03:00
Rename Type\IntegerValue to Type\Integer
Rename `Type\IntegerValue` to `Type\Integer`. It was originally named `IntegerValue` because static analysis sees `Integer` in docblock annotations and treats it as the native `int` type. `Integer` is not a reserved word in PHP, so it should be named `Integer` for consistency with other types in this library. When using it, a class alias prevents static analysis from complaining.
This commit is contained in:
@@ -17,7 +17,7 @@ namespace Ramsey\Uuid;
|
||||
use JsonSerializable;
|
||||
use Ramsey\Uuid\Fields\FieldsInterface;
|
||||
use Ramsey\Uuid\Type\Hexadecimal;
|
||||
use Ramsey\Uuid\Type\IntegerValue;
|
||||
use Ramsey\Uuid\Type\Integer as IntegerObject;
|
||||
use Serializable;
|
||||
|
||||
/**
|
||||
@@ -81,7 +81,7 @@ interface UuidInterface extends
|
||||
/**
|
||||
* Returns the integer value of the UUID as a string
|
||||
*/
|
||||
public function getInteger(): IntegerValue;
|
||||
public function getInteger(): IntegerObject;
|
||||
|
||||
/**
|
||||
* Returns a string representation of the UUID
|
||||
|
||||
Reference in New Issue
Block a user