Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
60 | public function getRelatedEntry() |
||
61 | { |
||
62 | $localModel = rtrim(config('contentful.namespaces.model'), '\\') . '\\' . ucfirst($this->source_contentful_type); |
||
63 | if (! class_exists($localModel)) { |
||
64 | return null; |
||
65 | } |
||
66 | |||
67 | $model = (new $localModel); |
||
68 | |||
69 | return $model->locale()->where($model->getKeyName(), '=', $this->source_contentful_type)->first(); |
||
70 | } |
||
72 |