bbprojectnet

Results 15 issues of bbprojectnet

Hi, I observe high CPU usage when run any task in parallel, even is same task runs perfect when i run it normally. It's happend even on such simple script...

Fixes https://github.com/teamtnt/tntsearch/issues/60

Hi, When i first time import my record for indexing i get this: ![obraz](https://user-images.githubusercontent.com/1136309/170948294-0c052c80-aae3-485b-bdbb-340126b7f452.png) But, when i reimport just after first import, i get: ![obraz](https://user-images.githubusercontent.com/1136309/170948350-01dee0eb-6a3a-49a5-82b5-1d07d1f10eb3.png) Why number of indexed records...

It is possible? For now, when i create a resource, related model is saved, but related columns in main resource is not filled at all. My guess is that the...

bug

Hi, I have schema (patients resource) like this: ``` public function fields(): array { return [ ... HasMany::make('documents')->readOnly(), HasOne::make('activated-declaration-document')->type('documents')->readOnly(), HasOne::make('primary-declaration-document')->type('documents')->readOnly(), ]; } ``` `documents` resource also have `data` morph to...

Hi, It is possible to create something like Queries-One or Queries-Many relation like in first version of library? https://laravel-json-api.readthedocs.io/en/latest/basics/adapters/

### Versions: - ide-helper Version: 2.12.3 - Laravel Version: 9.29.0 - PHP Version: 8.1 ### Description: Only `public` and type casted get/set methods attributes are detected. But, according to https://laravel.com/docs/9.x/eloquent-mutators...

bug

### Versions: - ide-helper Version: 2.12.3 - Laravel Version: 9.29.0 - PHP Version: 8.1 ### Description: For castable witch return `T|null` IDE helper generates `T|null|null` type, for example: ```php protected...

bug

### Versions: - ide-helper Version: 2.12.3 - Laravel Version: 9.29.0 - PHP Version: 8.1 ### Description: If castable implements `CastsInboundAttributes` IDE helper generates incorrect PHP doc type, for example: ```php...

bug

Hi, I have "virtual" relationship declared as: ```php public function relationships($request): iterable { return [ ...iterator_to_array(parent::relationships($request)), $this->relation('currentCouple')->withData(fn (Patient $patient) => $patient->getCurrentCouple()), ]; } ``` in my resource class. It's works...