Jáchym Toušek
Jáchym Toušek
@jakubkulhan I can't find any changelog or upgrade guide for this repository. Except git history of course but I don't have time to study everything to see if there were...
For certain reasons I decided to use indexed collection: ``` php /** * @OneToMany(targetEntity = "ContactPerson", mappedBy = "company", indexBy = "id", cascade = { "persist", "remove" }, orphanRemoval =...
```php $this->something->__invoke() ``` is fixed to ```php $this->something(); ``` which is of course wrong because it will try to call the `something()` method on `$this` instead of the `__invoke()` method...
I just got these warnings: ``` PHP Warning: uv_update_time(): passed UVLoop handle is already closed in .../vendor/amphp/amp/lib/Loop/UvDriver.php on line 193 PHP Warning: uv_now(): passed UVLoop handle is already closed in...
There should be a DynamicReturnType for `Doctrine\Common\Annotations\Reader`. The `getClassAnnotation`, `getMethodAnnotation` and `getPropertyAnnotation` can only return the requested annotation or `null`.
I tried using attributes instead of annotations so I changed: ``` @\OpenApi\Annotations\Put(requestBody = @\OpenApi\Annotations\RequestBody(@Model(type = MyControllerRequest::class))) ``` to ``` #[\OpenApi\Attributes\Put(requestBody: new \OpenApi\Attributes\RequestBody(new Model(type: MyControllerRequest::class)))] ``` and got this error: ```...
``` #[OA\Put(requestBody: new OA\RequestBody(new Model(type: MyEndpointRequest::class)))] #[Route(path: '/api/my-endpoint', methods: ['PUT'])] ``` This results in: ``` Uncaught PHP Exception Symfony\Component\Routing\Exception\ResourceNotFoundException: "No routes found for "@OA\Generator::UNDEFINED🙈/"." at /var/www/vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php line 74 ``` As...
I'm trying to enable SingleStreamStrategy to fix performance issues in projections (see https://github.com/proophsoftware/es-emergency-call/issues/5 for details). For now I'm unable to get it working. EventStore still makes one stream per aggregate...
I just encountered an issue where one of my projection was in an invalid state after being interrupted during previous run. The state of the projection was not saved to...