We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
barryvdh
Learn more about funding links in repositories.
Report abuse
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If castable implements CastsInboundAttributes IDE helper generates incorrect PHP doc type, for example:
CastsInboundAttributes
protected $casts = [ 'password' => AsHash::class, ];
class AsHash implements CastsInboundAttributes { /** * @inheritDoc */ public function set($model, string $key, $value, array $attributes): ?string { if ($value === null) { return null; } return Hash::make($value); // @codeCoverageIgnore } }
User.php php doc block:
@property \BBProjectNet\LaravelCasts\AsHash|null $password
If castable implements CastsInboundAttributes type should by inherit from database type.
The text was updated successfully, but these errors were encountered:
Seems there's already a PR => #1329
Sorry, something went wrong.
Closing, as PR was merged and released
No branches or pull requests
Versions:
Description:
If castable implements
CastsInboundAttributes
IDE helper generates incorrect PHP doc type, for example:User.php php doc block:
If castable implements
CastsInboundAttributes
type should by inherit from database type.The text was updated successfully, but these errors were encountered: