diff options
author | Joas Schilling <coding@schilljs.com> | 2025-02-21 12:12:29 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2025-02-21 14:10:44 +0100 |
commit | cc8487cd0348aae02daa0f0c5cc7058498cb6c18 (patch) | |
tree | 032c6ef490a35e3787a1658859c540c62afacc83 /build | |
parent | be4cad2cdca9b0e2d3f31fe00f5cbc2f79af9caa (diff) | |
download | nextcloud-server-backport/50949/stable29.tar.gz nextcloud-server-backport/50949/stable29.zip |
ci(autochecks): Run some autochecks also on non-PHP filesbackport/50949/stable29
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'build')
-rw-r--r-- | build/files-checker.php | 2 | ||||
-rw-r--r-- | build/htaccess-checker.php | 2 | ||||
-rw-r--r-- | build/translation-checker.php | 2 | ||||
-rw-r--r-- | build/triple-dot-checker.php | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/build/files-checker.php b/build/files-checker.php index 0527240b555..c76799e6fcc 100644 --- a/build/files-checker.php +++ b/build/files-checker.php @@ -1,4 +1,6 @@ <?php + +declare(strict_types=1); /** * @copyright Copyright (c) 2017 Morris Jobke <hey@morrisjobke.de> * diff --git a/build/htaccess-checker.php b/build/htaccess-checker.php index 950735463c9..bce943a313d 100644 --- a/build/htaccess-checker.php +++ b/build/htaccess-checker.php @@ -1,4 +1,6 @@ <?php + +declare(strict_types=1); /** * @copyright Copyright (c) 2016 Lukas Reschke <lukas@statuscode.ch> * diff --git a/build/translation-checker.php b/build/translation-checker.php index 6676a49caa8..3f687dc1fde 100644 --- a/build/translation-checker.php +++ b/build/translation-checker.php @@ -1,4 +1,6 @@ <?php + +declare(strict_types=1); /** * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later diff --git a/build/triple-dot-checker.php b/build/triple-dot-checker.php index 15985a0a95c..d85f94ac541 100644 --- a/build/triple-dot-checker.php +++ b/build/triple-dot-checker.php @@ -1,4 +1,6 @@ <?php + +declare(strict_types=1); /** * @copyright Copyright (c) 2017 Joas Schilling <coding@schilljs.com> * @copyright Copyright (c) 2020 Gary Kim <gary@garykim.dev> |