diff options
author | Marcel Klehr <mklehr@gmx.net> | 2023-04-13 12:15:18 +0200 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2023-04-13 12:15:18 +0200 |
commit | 865ebfaf72fa186a18d822e0332a5c5201b9b992 (patch) | |
tree | f257294cd608b1103eb5cf35b33240955234644f /lib/private | |
parent | a8d3fff648c4c6f5be3e37c09f9168e5b7c0e8f8 (diff) | |
download | nextcloud-server-865ebfaf72fa186a18d822e0332a5c5201b9b992.tar.gz nextcloud-server-865ebfaf72fa186a18d822e0332a5c5201b9b992.zip |
Add missing strict_types + author + copyright
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/SpeechToText/TranscriptionJob.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/private/SpeechToText/TranscriptionJob.php b/lib/private/SpeechToText/TranscriptionJob.php index 775a2a7fadc..d8abf9a9c34 100644 --- a/lib/private/SpeechToText/TranscriptionJob.php +++ b/lib/private/SpeechToText/TranscriptionJob.php @@ -1,5 +1,29 @@ <?php +declare(strict_types=1); + +/** + * @copyright Copyright (c) 2023 Marcel Klehr <mklehr@gmx.net> + * + * @author Marcel Klehr <mklehr@gmx.net> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + + namespace OC\SpeechToText; use OCP\AppFramework\Utility\ITimeFactory; |