Marco Pivetta
Marco Pivetta
I understand the reasoning behind this patch, but I disagree with adding more complexity to the tool to handle edge cases. These should just be exceptions or it should be...
@Idrinth I would at least suggest giving this a stab. Yes, it is more work, but in general, fixing the symptom is a problem, while the source of the issue...
@simara-svatopluk give it time: 9 days is peanuts on OSS-scale. If you are in a hurry, I suggest stepping in and helping out.
`function_exists()` is a runtime expression with another runtime expression as parameter. This can only be used if: * The parameter is a constant expression * The `\function_exists` symbol is referenced...
Can you try running with `-vvv`?
Note: there are no no-issue cases. Even internal classes that are in default extensions should be marked as "notice" or such, because that stuff actually breaks on custom PHP installations...
If you need event sourcing, then simple buses are not sufficient, IMO. Without EventSourcing, you can pick whatever you want. Prooph and Broadway provide transactional wrapping of operations performed around...
Please never ever flush($entity) if this is about doctrine. Don't have details here, but that is not a limitation on persistence operations, just a performance optimization. On 5 May 2017...
`fromArray_v2` all the way: I avoid `public function __construct` in my systems, as data structures have multiple ways of being instantiated. Reusing `private` logic is fine, but the ctor should...
```php $self = new self(); $self->quantity = $array['quantity']; $self->subtotal = $array['subtotal']; $self->total = $array['total']; return $self; ``` This bit can be in any `private` method, if duplicate.