Version: 3.1.0 ### Bug Description When I create sessionSection and save an array property to it with one element, it does not have any effect. ### Steps To Reproduce ``` $cart = $this->session->getSection('cart'); $cart->items[0] = 0; echo $cart->items[0]; ``` I get notice `Trying to access array offset on value of type null`. ### Expected Behavior To get `0`