instagram-user-feed icon indicating copy to clipboard operation
instagram-user-feed copied to clipboard

Instagram\Model\Media::toArray() specifies wrong property name

Open petertornstrand opened this issue 5 months ago • 1 comments

Version(s) affected: 7.0

Description

Instagram\Model\Media::toArray() specifies wrong property name:

'shortcode' => $this->shortCode

This produces an error:

Deprecated function: Creation of dynamic property Instagram\Model\Media::$shortcode is deprecated

How to reproduce

Serialize/unserialize an Media object.

Possible Solution

Fix key name in returned array.

'shortCode' => $this->shortCode

petertornstrand avatar Jan 10 '24 11:01 petertornstrand