]> git.mxchange.org Git - friendica.git/blobdiff - src/BaseCollection.php
Tempory fix removed
[friendica.git] / src / BaseCollection.php
index c711755722c13804bb1fdef439b700bf58c62375..f6fa9bbd4dec7329215b81cb644f3260a4f0c2eb 100644 (file)
@@ -48,7 +48,7 @@ class BaseCollection extends \ArrayIterator
        /**
         * @inheritDoc
         */
-       public function offsetSet(mixed $offset, mixed $value): void
+       public function offsetSet($offset, $value)
        {
                if (is_null($offset)) {
                        $this->totalCount++;
@@ -60,7 +60,7 @@ class BaseCollection extends \ArrayIterator
        /**
         * @inheritDoc
         */
-       public function offsetUnset(mixed $offset): void
+       public function offsetUnset($offset)
        {
                if ($this->offsetExists($offset)) {
                        $this->totalCount--;