summaryrefslogtreecommitdiffstats
path: root/tests/Integration/Fixtures/FolderFixture.php
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2020-10-04 20:45:33 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2020-11-03 19:58:37 +0100
commit10e8c28feaf6d858948285a291231f651ef74728 (patch)
tree5c48216dc1ce6a6dd8f292d489bb4a7d03cb5595 /tests/Integration/Fixtures/FolderFixture.php
parent361cfa55b7302b29e158647060085550b9a3dfe1 (diff)
Add migration with foreign keys
Closes #829 Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
Diffstat (limited to 'tests/Integration/Fixtures/FolderFixture.php')
-rw-r--r--tests/Integration/Fixtures/FolderFixture.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Integration/Fixtures/FolderFixture.php b/tests/Integration/Fixtures/FolderFixture.php
index 19f19041b..09c03e5de 100644
--- a/tests/Integration/Fixtures/FolderFixture.php
+++ b/tests/Integration/Fixtures/FolderFixture.php
@@ -19,11 +19,11 @@ class FolderFixture extends Folder
{
use Fixture;
- public function __construct(array $defaults=[])
+ public function __construct(array $defaults=[])
{
$defaults = array_merge(
[
- 'parentId' => 0,
+ 'parentId' => null,
'name' => 'folder',
'userId' => 'test',
'opened' => true,