mautic / plugin-helloworld

Hello World plugin built on the Integration framework
13 stars 13 forks source link

Wrong use statement inside HelloWorldIntegration.php #3

Closed alfredoct96 closed 4 years ago

alfredoct96 commented 4 years ago

At the moment the use statement is

use MauticPlugin\IntegrationsBundle\Integration\BasicIntegration; use MauticPlugin\IntegrationsBundle\Integration\ConfigurationTrait; use MauticPlugin\IntegrationsBundle\Integration\Interfaces\BasicInterface;

It's wrong, must be

use Mautic\IntegrationsBundle\Integration\BasicIntegration; use Mautic\IntegrationsBundle\Integration\ConfigurationTrait; use Mautic\IntegrationsBundle\Integration\Interfaces\BasicInterface;