Aleksei Gagarin

Results 236 comments of Aleksei Gagarin

> Is this proposal actual yet? Could you write more details? Yes

Documentation drafts that should be moved into documentation site: - [x] https://github.com/temporalio/sdk-php/pull/336 - [ ] https://github.com/temporalio/sdk-php/pull/355 - [ ] Mentions about UUID, HistoryLength and visibility features from [v2.6.0 release](https://github.com/temporalio/sdk-php/releases/tag/v2.6.0) may...

Hi. I have the same issue. I see there is a problem with release/sync script. https://github.com/protocolbuffers/protobuf-php/commit/1fc16ac4b14107db52597c98b08a80a85a3167d5 ![img](https://user-images.githubusercontent.com/4152481/217159453-32888663-148b-470e-a985-4871605793cd.png) There are all the fixes of PHP 8.2 deprecations in this commit (`master`...

FYI `v3.22.0` was released. https://github.com/protocolbuffers/protobuf-php/releases/tag/v3.22.0

I agree. It may be replaced with `@return ($role is class-string ? TEntity|null : object|null)` Feel free to make a PR. Or it may do @msmakouz but later.

In your examples innerKey and outerKey should contain property name, not column name

Hello @nevmerzhitsky ! Cycle ORM supports relations using multiple columns - just list linked entities field names in arrays. ```php #[BelogsTo(..., innerKey: ['field1', 'field2'], outerKey: ['field1', 'field2'])] ``` @msmakouz talks...

FYI: We have supporting for UUID v7 in https://github.com/cycle/entity-behavior-uuid You can read about it there https://uuid.ramsey.dev/en/stable/rfc4122/version7.html

> I use Ulid for almost all entities PKs wrapped in `ValueInterface`, it works great. I'm thinking about switching to a entity-behavior, but turns out I actually like the control...

Hello. Please share how you imagine the API. What would the end user code look like? --- Btw, you might be interested in looking at a small example of how...