Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
U
uuido
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
6
Snippets
Groups
Projects
Show more breadcrumbs
spinit
uuido
Compare revisions
1.6.1 to 1.6.2
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
spinit/uuido
Select target project
No results found
1.6.2
Select Git revision
Branches
master
Tags
1.1.0
1.1.1
1.2.0
1.3.0
1.4.0
1.6.1
1.6.2
1.6.3
1.6.4
1.6.5
1.6.6
1.6.7
1.6.8
1.6.9
v1.5.0
16 results
Swap
Target
spinit/uuido
Select target project
spinit/uuido
1 result
1.6.1
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
fix
· a9405bec
Ermanno Astolfi
authored
7 years ago
a9405bec
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
composer.json
+1
-1
1 addition, 1 deletion
composer.json
src/Maker.php
+1
-1
1 addition, 1 deletion
src/Maker.php
with
2 additions
and
2 deletions
composer.json
View file @
a9405bec
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
"description"
:
"Make ordered UUID"
,
"description"
:
"Make ordered UUID"
,
"type"
:
"library"
,
"type"
:
"library"
,
"keywords"
:
[
"uuid"
,
"ordered uuid"
],
"keywords"
:
[
"uuid"
,
"ordered uuid"
],
"version"
:
"1.6.
1
"
,
"version"
:
"1.6.
2
"
,
"license"
:
"LGPL-3.0-only"
,
"license"
:
"LGPL-3.0-only"
,
"authors"
:
[
"authors"
:
[
{
{
...
...
This diff is collapsed.
Click to expand it.
src/Maker.php
View file @
a9405bec
...
@@ -68,7 +68,7 @@ class Maker implements \Iterator
...
@@ -68,7 +68,7 @@ class Maker implements \Iterator
*/
*/
public
function
__construct
(
$idNode
,
$len
=
16
)
public
function
__construct
(
$idNode
,
$len
=
16
)
{
{
$this
->
idNode
=
check
(
$idNode
);
$this
->
idNode
=
check
(
$idNode
,
$len
);
$this
->
len
=
$len
;
$this
->
len
=
$len
;
$this
->
setCounter
(
new
Counter
());
$this
->
setCounter
(
new
Counter
());
$this
->
init
();
$this
->
init
();
...
...
This diff is collapsed.
Click to expand it.