blob: 762570547e0fbfd1d43087a67d2650bce4ff565d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
use Behat\Behat\Context\Context;
use Behat\Behat\Context\SnippetAcceptingContext;
require __DIR__ . '/../../vendor/autoload.php';
class RoutingContext implements Context, SnippetAcceptingContext {
use Provisioning;
use AppConfiguration;
use CommandLine;
protected function resetAppConfigs(): void {
}
}
|