summaryrefslogtreecommitdiffstats
path: root/tests/Integration/Fixtures/FolderFixture.php
blob: 150557b8b9ed253138aa9e3ee5810a5c4f8a7aba (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
<?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);
    }

}