17 lines
273 B
PHP
Executable File
17 lines
273 B
PHP
Executable File
<?php
|
|
|
|
namespace MauticPlugin\MauticCrmBundle\Api;
|
|
|
|
use MauticPlugin\MauticCrmBundle\Integration\CrmAbstractIntegration;
|
|
|
|
/**
|
|
* @method createLead()
|
|
*/
|
|
class CrmApi
|
|
{
|
|
public function __construct(
|
|
protected CrmAbstractIntegration $integration,
|
|
) {
|
|
}
|
|
}
|