| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 54 | public function create(): void |
||
| 55 | { |
||
| 56 | $this->authorize('create', BlogCategory::class); |
||
| 57 | |||
| 58 | $this->validate(); |
||
| 59 | |||
| 60 | $this->form->create(); |
||
| 61 | |||
| 62 | $this->showModal = false; |
||
| 63 | |||
| 64 | redirect() |
||
| 65 | ->route('admin.blog.category.index') |
||
|
|
|||
| 66 | ->success('Your category has been created successfully !'); |
||
| 67 | } |
||
| 74 |
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.