| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | protected function ensureAssociation(Model $model): bool |
||
| 35 | { |
||
| 36 | if (!$model instanceof ObjectAssociation) { |
||
| 37 | throw new RecordNotFoundException(sprintf( |
||
| 38 | "HubSpot Resource Association must be an instance of '%s', '%s' given.", |
||
| 39 | ObjectAssociation::class, |
||
| 40 | get_class($model) |
||
| 41 | )); |
||
| 42 | } |
||
| 43 | |||
| 44 | return true; |
||
| 45 | } |
||
| 46 | } |
||
| 47 |