Conditions | 4 |
Paths | 3 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
43 | protected function performAction(Model $record): bool |
||
44 | { |
||
45 | if (!$record->save()) { |
||
46 | return false; |
||
47 | } |
||
48 | |||
49 | if ($record->status == Visitor::STATUS_PENDING && Craft::$app->getRequest()->getBodyParam('queue')) { |
||
50 | HubSpot::getInstance()->getVisitor()->syncVisitor($record); |
||
51 | } |
||
52 | |||
53 | return true; |
||
54 | } |
||
55 | } |
||
56 |