We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is a decimal field in mysql table.
... `amount` decimal(20, 2) NOT NULL ...
generate model by gii
... * @property float $amount ...
By var_dump($model->attributes); you know that $model->amount is a value of type string.
var_dump($model->attributes);
... * @property string $amount ...
I think the key is here:
yii2-gii/src/generators/model/Generator.php
Line 338 in c025c29
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There is a decimal field in mysql table.
generate model by gii
By
var_dump($model->attributes);
you know that $model->amount is a value of type string.What's expected?
Additional info
I think the key is here:
yii2-gii/src/generators/model/Generator.php
Line 338 in c025c29
The text was updated successfully, but these errors were encountered: