]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Log/ParsedLogIterator.php
Reverted some changes that won't work with PHP7.3
[friendica.git] / src / Model / Log / ParsedLogIterator.php
index 151a66adb472d74538a6f1496187136725566d4a..4309e4cd002dcd665d281045a3cb3565daae71d7 100644 (file)
@@ -160,7 +160,7 @@ class ParsedLogIterator implements \Iterator
         * @see Iterator::next()
         * @return void
         */
-       public function next(): void
+       public function next()
        {
                $parsed = $this->read();
 
@@ -177,7 +177,7 @@ class ParsedLogIterator implements \Iterator
         * @see Iterator::rewind()
         * @return void
         */
-       public function rewind(): void
+       public function rewind()
        {
                $this->value = null;
                $this->reader->rewind();
@@ -202,7 +202,7 @@ class ParsedLogIterator implements \Iterator
         * @see Iterator::current()
         * @return ?ParsedLogLing
         */
-       public function current(): mixed
+       public function current()
        {
                return $this->value;
        }