aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/DirectEditing/Token.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/DirectEditing/Token.php')
-rw-r--r--lib/private/DirectEditing/Token.php26
1 files changed, 4 insertions, 22 deletions
diff --git a/lib/private/DirectEditing/Token.php b/lib/private/DirectEditing/Token.php
index eb98f3c7123..ca01265f9df 100644
--- a/lib/private/DirectEditing/Token.php
+++ b/lib/private/DirectEditing/Token.php
@@ -1,33 +1,15 @@
<?php
+
/**
- * @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net>
- *
- * @author Julius Härtl <jus@bitgrid.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/>.
- *
+ * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
*/
-
namespace OC\DirectEditing;
use OCP\DirectEditing\IToken;
use OCP\Files\File;
class Token implements IToken {
-
/** @var Manager */
private $manager;
private $data;
@@ -61,7 +43,7 @@ class Token implements IToken {
}
public function hasBeenAccessed(): bool {
- return (bool) $this->data['accessed'];
+ return (bool)$this->data['accessed'];
}
public function getEditor(): string {