14 lines
252 B
PHP
Executable File
14 lines
252 B
PHP
Executable File
<?php
|
|
|
|
namespace MauticPlugin\MauticCrmBundle\Tests\Stubs;
|
|
|
|
use MauticPlugin\MauticCrmBundle\Integration\CrmAbstractIntegration;
|
|
|
|
class StubIntegration extends CrmAbstractIntegration
|
|
{
|
|
public function getName()
|
|
{
|
|
return 'Stub';
|
|
}
|
|
}
|