mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
So we do not have 3 locatations to look for PHP dependencies. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
17 lines
295 B
PHP
17 lines
295 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__ . '/autoload.php';
|
|
|
|
|
|
/**
|
|
* Setup context.
|
|
*/
|
|
class SetupContext implements Context {
|
|
use BasicStructure;
|
|
}
|