I am getting data like the following:
$getData = $series->getData($post_id);
Array
(
    [0] => stdClass Object
        (
            [id] => 2
            [month] => December 29 
            [image] => https://www.example.com/uploads/post/Post-20190920111041434.jpg
            [added_date] => 2019-11-02
        )
)
If I try to access $getData->month I don't get any data and if I try to access data like $getData[0]->month I get data but I also get list of errors in my log file which says Undefined offset: 0. What is wrong here?
