Пример #1
0
 /**
  * @param Object $object
  * @param Meta $meta
  * @return Object
  */
 private function initializeProperties($object, Meta $meta)
 {
     foreach ($meta->getManyToManyRelations() as $metaProperty) {
         $metaProperty->setValue($object, new ExtendedArrayCollection());
     }
     return $object;
 }