2013-05-28 23:46:57 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2024-05-10 15:09:14 +02:00
|
|
|
* SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2020-04-08 22:24:54 +02:00
|
|
|
*/
|
2013-05-28 23:46:57 +02:00
|
|
|
|
2016-05-19 09:17:54 +02:00
|
|
|
namespace Test\User;
|
|
|
|
|
|
|
|
class Dummy extends Backend {
|
2019-11-21 16:40:38 +01:00
|
|
|
protected function setUp(): void {
|
2014-11-05 12:21:02 +01:00
|
|
|
parent::setUp();
|
2020-10-05 15:12:57 +02:00
|
|
|
$this->backend = new \Test\Util\User\Dummy();
|
2013-05-28 23:46:57 +02:00
|
|
|
}
|
|
|
|
}
|