Skip to content
New issue

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

CastsInboundAttributes generates incorrect property type #1374

Closed
bbprojectnet opened this issue Sep 12, 2022 · 2 comments
Closed

CastsInboundAttributes generates incorrect property type #1374

bbprojectnet opened this issue Sep 12, 2022 · 2 comments
Labels

Comments

@bbprojectnet
Copy link

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:

	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.

@mfn
Copy link
Collaborator

mfn commented Sep 12, 2022

Seems there's already a PR => #1329

@mfn
Copy link
Collaborator

mfn commented Feb 16, 2024

Closing, as PR was merged and released

@mfn mfn closed this as completed Feb 16, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants