| Conditions | 3 |
| Paths | 2 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 40 | public function execute($queue) |
||
| 41 | { |
||
| 42 | $field = $this->getField(); |
||
| 43 | $element = $this->getElement(); |
||
| 44 | |||
| 45 | if (!$field instanceof ObjectsFieldInterface || !$element instanceof ElementInterface) { |
||
| 46 | return false; |
||
| 47 | } |
||
| 48 | |||
| 49 | return $field->syncFromHubSpot( |
||
| 50 | $element, |
||
| 51 | $this->objectId, |
||
| 52 | $this->transformer |
||
| 53 | ); |
||
| 54 | } |
||
| 55 | |||
| 80 |