for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright Copyright (c) Flipbox Digital Limited
* @license https://flipboxfactory.com/software/hubspot/license
* @link https://www.flipboxfactory.com/software/hubspot/
*/
namespace flipbox\craft\hubspot\actions\connections;
use flipbox\craft\hubspot\records\Connection;
use flipbox\craft\integration\actions\connections\UpdateConnection as UpdateIntegrationConnection;
use yii\db\ActiveRecord;
* @author Flipbox Factory <[email protected]>
* @since 1.0.0
class UpdateConnection extends UpdateIntegrationConnection
{
use LookupConnectionTrait,
PopulateConnectionTrait;
* @param Connection $record
* @inheritdoc
protected function populate(ActiveRecord $record): ActiveRecord
parent::populate($record);
return $this->populateSettings($record);
}