laravel-ide-helper icon indicating copy to clipboard operation
laravel-ide-helper copied to clipboard

IDE Helper for Laravel

Results 249 laravel-ide-helper issues
Sort by recently updated
recently updated
newest added

### Versions: - ide-helper Version: v3.0.0 - PHP Version: 8.2 ### Question: Hello! In the latest version the class name was removed from the model generation with this commit https://github.com/barryvdh/laravel-ide-helper/commit/02af2a278a9d3186e431022f46e10c87598eeec9....

question

Redis::set() phpstorm Prompt not found

enhancement

### Versions: - ide-helper Version: 3.0.0 - Laravel Version: 10.28 - PHP Version: 8.1.26 ### Description: VsCode with intelephense not detect definition for a function class ### Steps To Reproduce:...

bug

### Versions: - ide-helper Version: 3.0 - Laravel Version: 10.48.7 - PHP Version: 8.2.12 ### Description: - The problem is when i use v1.10.4 [PHP Intelephense] my laravel ide helper...

bug

## Summary During Factories analysis, the Factory::resolve FactoryName method returns an object and not a string. I using PHP 8.3, I don't tested with older version. Exception: trim(): Argument #1...

## Summary See issue for expected improvement: https://github.com/barryvdh/laravel-ide-helper/issues/1574 The class `\Eloquent` in `_ide_helper.php` contains methods from `Illuminate\Database\Eloquent\Builder` and `Illuminate\Database\Query\Builder`. The return type for `$this` is replaced with the real class...

## Summary This PR introduces a new configuration option `enforce_nullable_relationships` to the Laravel IDE Helper package. The purpose of this option is to provide flexibility in how nullable Eloquent relationships...

## Summary This PR changes the type of fields with `decimal` casts to `numeric`. Closes #1582 ## Type of change - [x] New feature (non-breaking change which adds functionality) ###...

### Summary Right now, model fields with a `decimal` type cast are annotated with the `string` type. This is correct, however typing them with a `numeric-string` type would help static...

enhancement

## Summary When you have the casts definition in a model like: ```php protected function casts(): array { return [ 'options' => AsCollection::using(OptionCollection::class), 'statuses' => AsEnumCollection::of(ServerStatus::class), ]; } ``` then...