| Total Complexity | 3 | 
| Total Lines | 62 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 12 | class BlogCategoryForm extends Form | ||
| 13 | { | ||
| 14 | /** | ||
| 15 | * The category to update. | ||
| 16 | * | ||
| 17 | * @var BlogCategory|null | ||
| 18 | */ | ||
| 19 | public ?BlogCategory $blogCategory = null; | ||
| 20 | |||
| 21 | /** | ||
| 22 | * The title of the category. | ||
| 23 | * | ||
| 24 | * @var string|null | ||
| 25 | */ | ||
| 26 | public ?string $title = null; | ||
| 27 | |||
| 28 | /** | ||
| 29 | * The description of the category. | ||
| 30 | * | ||
| 31 | * @var string|null | ||
| 32 | */ | ||
| 33 | public ?string $description = null; | ||
| 34 | |||
| 35 | protected function rules(): array | ||
| 44 | ]; | ||
| 45 | } | ||
| 46 | |||
| 47 | /** | ||
| 48 | * Function to store the model. | ||
| 49 | * | ||
| 50 | * @return BlogCategory | ||
| 51 | */ | ||
| 52 | public function create(): BlogCategory | ||
| 60 | } | ||
| 61 | |||
| 62 | /** | ||
| 63 | * Function to update the model. | ||
| 64 | * | ||
| 65 | * @return BlogCategory | ||
| 66 | */ | ||
| 67 | public function update(): BlogCategory | ||
| 76 | 
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.