summaryrefslogtreecommitdiff
path: root/src/DTS/BookmarkRepository.php
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2021-11-10 20:46:08 +0000
committerDavid T. Sadler <davidtsadler@googlemail.com>2021-11-10 20:46:08 +0000
commitf130f495e54a890c0fe3c8f790a8e48a54f41e02 (patch)
tree5a02c8d7aec82b08ba1c6090bce3df5fd3bd4d05 /src/DTS/BookmarkRepository.php
parent80d9e02ea47bfb783cc2033162ae9231551e5654 (diff)
Get it work with PHP 7
Diffstat (limited to 'src/DTS/BookmarkRepository.php')
-rw-r--r--src/DTS/BookmarkRepository.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DTS/BookmarkRepository.php b/src/DTS/BookmarkRepository.php
index fde8510..499db8c 100644
--- a/src/DTS/BookmarkRepository.php
+++ b/src/DTS/BookmarkRepository.php
@@ -82,12 +82,12 @@ class BookmarkRepository implements \Iterator
return $this->tags;
}
- public function current(): mixed
+ public function current()
{
return $this->repository[$this->position];
}
- public function key(): mixed
+ public function key()
{
return $this->position;
}