| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 38 | public function getSolution(): Solution |
||
| 39 | { |
||
| 40 | return BaseSolution::create('The state field is unknown') |
||
| 41 | ->setSolutionDescription("Add the `{$this->field}` field to the `registerStates` method inside `{$this->modelClass}`") |
||
| 42 | ->setDocumentationLinks([ |
||
| 43 | 'Configuring states' => 'https://docs.spatie.be/laravel-model-states/v1/working-with-states/01-configuring-states/', |
||
| 44 | ]); |
||
| 45 | } |
||
| 46 | } |
||
| 47 |