aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/ICertificate.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/ICertificate.php')
-rw-r--r--lib/public/ICertificate.php49
1 files changed, 17 insertions, 32 deletions
diff --git a/lib/public/ICertificate.php b/lib/public/ICertificate.php
index dbedd274305..29081337ebf 100644
--- a/lib/public/ICertificate.php
+++ b/lib/public/ICertificate.php
@@ -1,26 +1,11 @@
<?php
+
+declare(strict_types=1);
/**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <robin@icewind.nl>
- *
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * 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, version 3,
- * along with this program. If not, see <http://www.gnu.org/licenses/>
- *
+ * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
+ * SPDX-License-Identifier: AGPL-3.0-only
*/
-
namespace OCP;
/**
@@ -33,47 +18,47 @@ interface ICertificate {
* @return string
* @since 8.0.0
*/
- public function getName();
+ public function getName(): string;
/**
- * @return string
+ * @return string|null
* @since 8.0.0
*/
- public function getCommonName();
+ public function getCommonName(): ?string;
/**
- * @return string
+ * @return string|null
* @since 8.0.0
*/
- public function getOrganization();
+ public function getOrganization(): ?string;
/**
* @return \DateTime
* @since 8.0.0
*/
- public function getIssueDate();
+ public function getIssueDate(): \DateTime;
/**
* @return \DateTime
* @since 8.0.0
*/
- public function getExpireDate();
+ public function getExpireDate(): \DateTime;
/**
* @return bool
* @since 8.0.0
*/
- public function isExpired();
+ public function isExpired(): bool;
/**
- * @return string
+ * @return string|null
* @since 8.0.0
*/
- public function getIssuerName();
+ public function getIssuerName(): ?string;
/**
- * @return string
+ * @return string|null
* @since 8.0.0
*/
- public function getIssuerOrganization();
+ public function getIssuerOrganization(): ?string;
}