We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6aeb69a + a9b3af7 commit 893f5d0Copy full SHA for 893f5d0
src/WezomAgency/R2D2.php
@@ -52,7 +52,7 @@ protected function _getNonRepeatingId($id, $number = null)
52
{
53
$key = $id . ($number ? '-' . $number : '');
54
if (isset($this->idCache[$key])) {
55
- return $this->getNonRepeatingId($id, ($number ? ++$number : 1));
+ return $this->_getNonRepeatingId($id, ($number ? ++$number : 1));
56
}
57
$this->idCache[$key] = 1;
58
return $key;
0 commit comments