kor3k
kor3k
please consider adding an ability to manually "snapshot" given entity - store current values of it's fields, associations, and associations' fields (?). this could be used for #136 and perhaps...
since JOINED inheritance is not currently supported, what about allowing arbitrary **method return values** to get audited? something like this. ``` //joined inheritance applied User -> Admin class User {...
hello, i am trying to make DoctrineParamConverter follow `doctrine.orm.resolve_target_entities` config. afaik the only thing preventing DPC from loading those "resolved" entities is the `supports()` method, which returns ``` return !$em->getMetadataFactory()->isTransient($configuration->getClass());...
The logger [used here](https://github.com/gggeek/phpxmlrpc/blob/master/src/Helper/Logger.php) is impossible to replace/override, because of the way it's implemented ``` Logger::instance()->debugMessage($message) ``` also it's debug = 2 mode just echoes/prints debug message to the output,...
fix undefined index in stat metadata #12
### Bug Report | Q | A |------------ | ------ | BC Break | no | Version | >=2.19.2 #### Summary this line: https://github.com/doctrine/orm/blob/e384978e0bd1bdced06755ee190adf7f713dd006/src/Mapping/AssociationOverride.php#L44 should be ```php if ($inverseJoinColumns instanceof...
i think the CollectionAdapter constructor ```php Pagerfanta\Doctrine\Collections\CollectionAdapter::__construct(Collection $collection) ``` should be typehinted to `ReadableCollection` instead of `Collection`. that's what `Doctrine\Common\Collections\Selectable::matching()` is [typehinted](https://github.com/doctrine/collections/blob/2.2.x/src/Selectable.php#L28) to as well. and both `::slice()` and `::count()`...
https://github.com/studiometa/vue-mapbox-gl/blob/develop/packages/vue-mapbox-gl/components/MapboxMap.vue#L308 ```js const map = ref(); // should rather be const map = shallowRef(); ``` https://vuejs.org/api/reactivity-advanced.html#shallowref > Unlike ref(), the inner value of a shallow ref is stored and exposed...
liform cannot handle instances of `Symfony\Contracts\Translation\TranslatableInterface` for `label` , `help` and `choice_label`. ``` Symfony\Component\Translation\DataCollectorTranslator::trans(): Argument #1 ($id) must be of type ?string, Symfony\Component\Translation\TranslatableMessage given, called in /app/vendor/survos/liform/src/Limenius/Liform/Transformer/ChoiceTransformer.php on line 39...