Aleksei Gagarin
Aleksei Gagarin
Hi. If we talk about [GeneratedValue](https://github.com/cycle/annotated/blob/4.x/src/Annotation/GeneratedValue.php) attribute, then this attribute tells ORM that field is generated on the DB side. Orm adds a generated field into returning columns when insert...
Good catch. The `setLocale()` method has been present in the implementation for a long time. We should consider adding this method to the interface in the next major release.
To fix tests try to set `mysql:8.0.37` there https://github.com/cycle/annotated/blob/7dad356336ee70ef1f6e7b750274d4d215a691f1/tests/docker-compose.yml#L14
Hi. It looks like this warning (Note) has gone off 😃  You can adjust this test for the new behavior if we talk about this: ``` Failed asserting that...
Hm.. The inheritance tests aren't passed even on the main branche Looks like this assertion has unnecessary check `isset($parent)` https://github.com/cycle/annotated/blob/7dad356336ee70ef1f6e7b750274d4d215a691f1/src/TableInheritance.php#L69 But I`m not sure
Hello. Do these changes require additional testing? If not, then I'll review it again and merge.
> @roxblnfk Hi, Feel free to take over from here and alter the patch according to your needs, I am no longer using Cycle and will not invest time to...
For those interested in completing the fix: the code is saved in the [`fo-bar`](https://github.com/cycle/annotated/tree/fix/jti-parent-columns-duplication) branch. Feel free to open a pull request to this branch.
I'm developing the concept of **Workflow Init** in the constructor: the user can call the `Workflow::getInput()` method to obtain input arguments. ```php public function __construct() { $input = Workflow::getInput()->getValues(); //...
Looks like we already have it https://github.com/temporalio/sdk-php/blob/cc879864a3fe0cf023d941b99f7c5e31f4c82ff7/src/Client/Update/UpdateHandle.php#L45-L48