Skip to content

Commit

Permalink
Merge branch 'cake3_next' into cake3
Browse files Browse the repository at this point in the history
  • Loading branch information
pabloelcolombiano committed Jul 8, 2021
2 parents 2c1c80f + 7c30c84 commit 1368929
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"require": {
"php": ">=7.1.0",
"cakephp/cakephp": "^3.7",
"fakerphp/faker": "^1.13",
"fakerphp/faker": "^1.15",
"vierge-noire/cakephp-test-suite-light": "^1.1"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion src/Factory/DataCompiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ public function generateRandomPrimaryKey(string $columnType)
switch ($columnType) {
case 'uuid':
case 'string':
$res = $this->getFactory()->getFaker()->uuid;
$res = $this->getFactory()->getFaker()->uuid();
break;
case 'biginteger':
$res = mt_rand(0, intval('9223372036854775807'));
Expand Down

0 comments on commit 1368929

Please sign in to comment.