From 445006e9b4a6f02efc42b8e8d0b4361c28fe367a Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 20 Sep 2022 22:45:34 +0200 Subject: [PATCH] fix typehint --- DataStorage/Database/Schema/Builder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DataStorage/Database/Schema/Builder.php b/DataStorage/Database/Schema/Builder.php index 9c2f7d809..2e5972f31 100755 --- a/DataStorage/Database/Schema/Builder.php +++ b/DataStorage/Database/Schema/Builder.php @@ -265,7 +265,7 @@ class Builder extends QueryBuilder */ public function field( string $name, string $type, $default = null, - bool $isNullable = true, bool $isPrimary = false, $isUnique = false, bool $autoincrement = false, + bool $isNullable = true, bool $isPrimary = false, bool $isUnique = false, bool $autoincrement = false, string $foreignTable = null, string $foreignKey = null ) : self { $this->createFields[$name] = [