Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • master
  • 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

Target

Select target project
  • spinit/uuido
1 result
Select Git revision
Show changes
Commits on Source (1)
...@@ -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": [
{ {
......
...@@ -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();
......