SetupContext.php 307 B

12345678910111213141516
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. use Behat\Behat\Context\Context;
  7. require __DIR__ . '/../../vendor/autoload.php';
  8. /**
  9. * Setup context.
  10. */
  11. class SetupContext implements Context {
  12. use BasicStructure;
  13. }