reuse: fix PHP files to keep declare(strict_types=1) directly after <?php

Co-authored-by: szaimen <42591237+szaimen@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-05-11 13:00:48 +00:00
committed by GitHub
parent 4f43a212c3
commit b1046f0269
41 changed files with 41 additions and 82 deletions

View File

@@ -1,9 +1,8 @@
<?php
declare(strict_types=1);
// SPDX-FileCopyrightText: 2023 Nextcloud GmbH <https://nextcloud.com>
// SPDX-License-Identifier: AGPL-3.0-only
declare(strict_types=1);
$domain = '';
if (isset($_GET['domain']) && is_string($_GET['domain'])) {
$domain = $_GET['domain'];