mautic / app /bundles /PluginBundle /Integration /IntegrationObject.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
raw
history blame contribute delete
491 Bytes
<?php
namespace Mautic\PluginBundle\Integration;
class IntegrationObject
{
/**
* @param string $type
* @param string $internalType
*/
public function __construct(
private $type,
private $internalType
) {
}
/**
* @return string
*/
public function getType()
{
return $this->type;
}
/**
* @return string
*/
public function getInternalType()
{
return $this->internalType;
}
}