protected function initializeProperty(ClassFileDefinition $file, PropertyDefinition $property)
 {
     $fqcn = new FullyQualifiedClassName('SplObjectStorage');
     $arrayCollection = new ObjectValue($fqcn);
     $property->setDefaultValue($arrayCollection);
     $construct = $this->getConstructor($file);
     $construct->addLine(sprintf('$this->%s = %s;', $property->getName()->toLowerCamelCase(), $arrayCollection->getPhpFormatedValue()));
 }