nextcloud/build/integration/features/bootstrap/SetupContext.php
Côme Chilliet 082664c0c2
chore: Run rector on integration bootstrap code
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>
2026-03-10 14:15:30 +01:00

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;
}