summaryrefslogtreecommitdiffstats
path: root/tests/Integration/Fixtures/FolderFixture.php
blob: 2564e8b715f0f0f9955959dd963394a1ae306514 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/**
 * Nextcloud - News
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author    Bernhard Posselt <dev@bernhard-posselt.com>
 * @copyright Bernhard Posselt 2015
 */


namespace OCA\News\Tests\Integration\Fixtures;


use OCA\News\Db\Folder;

class FolderFixture extends Folder
{
    use Fixture;

    public function __construct(array $defaults=[])  
    {
        parent::__construct();
        $defaults = array_merge(
            [
            'parentId' => 0,
            'name' => 'folder',
            'userId' => 'test',
            'opened' => true,
            'deletedAt' => 0,
            'lastModified' => 9
            ], $defaults
        );
        unset($defaults['feeds']);
        $this->fillDefaults($defaults);
    }

}