mirror of
https://github.com/nextcloud/server.git
synced 2025-02-07 18:09:45 +00:00
16 lines
307 B
PHP
16 lines
307 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
use Behat\Behat\Context\Context;
|
|
|
|
require __DIR__ . '/../../vendor/autoload.php';
|
|
|
|
|
|
/**
|
|
* Setup context.
|
|
*/
|
|
class SetupContext implements Context {
|
|
use BasicStructure;
|
|
}
|