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\hubspot\cp\actions\fields;
use flipbox\craft\integration\actions\fields\PerformAction as PerformActionIntegration;
use flipbox\craft\integration\services\IntegrationField;
use flipbox\hubspot\HubSpot;
use flipbox\hubspot\services\ObjectsField;
* @author Flipbox Factory <[email protected]>
* @since 1.0.0
class PerformAction extends PerformActionIntegration
{
* @inheritdoc
* @return ObjectsField
protected function fieldService(): IntegrationField
return HubSpot::getInstance()->getObjectsField();
}