Object creation and downloading are working properly but I got issues when get the object details (like content type, length etc)
Code which is throwing the error :
$container = $openstack->objectStoreV1()
->getContainer($this->container_name);
foreach ($container->listObjects() as $object) {
$data = $object->retrieve();
var_dump($data);
}