Closed mvorisek closed 8 months ago
In 99% cases the impact is on Form::$model property usage. Seach form->model in your codebase and replace it with form->entity.
Form::$model
form->model
form->entity
The motivation is to simplify model/entity orientation for the developer. When Model is guaranteed to be entity only, is should never be named model.
In 99% cases the impact is on
Form::$model
property usage. Seachform->model
in your codebase and replace it withform->entity
.The motivation is to simplify model/entity orientation for the developer. When Model is guaranteed to be entity only, is should never be named model.