mirror of
https://github.com/nextcloud/server.git
synced 2026-03-21 18:11:02 -04:00
This avoids integration PHP code to use deprecated method and crash when we remove them. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
19 lines
321 B
PHP
19 lines
321 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* 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;
|
|
}
|