There is an issue with some annotations in Entity class.
For example, i got a __clone() method in my Entity class.
Inside of this function, i have this code :
            /** @var MyEntity $item */
            foreach ($this->items as $item) {
                $item = clone $item;
                $item->setActive(true);
            }
When i export my entities in skipper, i don't know why but he changes it into :
           foreach ($this->items as $item) {
                $item = clone $item;
                $item->setActive(true);
            }/** @var MyEntity $item */
Can you see it cause it's really annoying, i have to delete or change those comments if i don't want to be in trouble...
Thanks