Skip to content

Commit

Permalink
Merge pull request #679 from joomlatools/feature/678-imagine
Browse files Browse the repository at this point in the history
Deprecation notices on Imagine library
  • Loading branch information
amazeika authored Feb 12, 2024
2 parents b3f2142 + 0ba2933 commit 01492be
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ public function get($key, $default = null)
/**
* {@inheritdoc}
*/
#[\ReturnTypeWillChange]
public function count()
{
return count($this->data);
Expand All @@ -48,6 +49,7 @@ public function count()
/**
* {@inheritdoc}
*/
#[\ReturnTypeWillChange]
public function getIterator()
{
return new \ArrayIterator($this->data);
Expand All @@ -56,6 +58,7 @@ public function getIterator()
/**
* {@inheritdoc}
*/
#[\ReturnTypeWillChange]
public function offsetExists($offset)
{
return array_key_exists($offset, $this->data);
Expand All @@ -64,6 +67,7 @@ public function offsetExists($offset)
/**
* {@inheritdoc}
*/
#[\ReturnTypeWillChange]
public function offsetSet($offset, $value)
{
$this->data[$offset] = $value;
Expand All @@ -72,6 +76,7 @@ public function offsetSet($offset, $value)
/**
* {@inheritdoc}
*/
#[\ReturnTypeWillChange]
public function offsetUnset($offset)
{
unset($this->data[$offset]);
Expand All @@ -80,6 +85,7 @@ public function offsetUnset($offset)
/**
* {@inheritdoc}
*/
#[\ReturnTypeWillChange]
public function offsetGet($offset)
{
return $this->get($offset);
Expand Down

0 comments on commit 01492be

Please sign in to comment.