Maxim Smakouz

Results 7 comments of Maxim Smakouz

The current version of the `required` is similar in behavior to the `required` in Laravel: https://laravel.com/docs/9.x/validation#rule-required > The field under validation must be present in the input data and not...

> @rustatian can confirm, it works! With installed `spiral/roadrunner-http:dev-feature-proto-payloads` and `raw_body=true` everything works as expected. Hi, the package `roadrunner-php/http` has already been released, version 3.5.0.

@nevmerzhitsky Hi, you can't use relation and column attributes on the same property. In this case, need to add a standalone field for pk: ```php #[Cycle\Entity] #[Cycle\Table\Index(['telegram_chat_id'], unique: true)] class...

Hi @wapmorgan I tried to reproduce your issue. I created test entities: ```php use Cycle\Annotated\Annotation\Column; use Cycle\Annotated\Annotation\Entity; use Cycle\Annotated\Annotation\Relation\BelongsTo; #[Entity(table: 'users')] class User { #[Column(type: 'primary')] public int $id; #[BelongsTo(target:...

@lifewcody Hi, I installed a clean installation of [spiral/app](https://github.com/spiral/app) (in the installer I selected the console application) and added the call to the example console command: ```php namespace App\Endpoint\Console; use...

@realization Thanks!