Issues (114)

Services/EmailOpenTrackingCodeBuilderInterface.php (1 issue)

Labels
Severity
1
<?php
2
3
namespace Azine\EmailBundle\Services;
4
5
interface EmailOpenTrackingCodeBuilderInterface
6
{
7
    /**
8
     * @param $templateId the email twig template name (without the .html.twig or .txt.twig extension)
0 ignored issues
show
The type Azine\EmailBundle\Services\the was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
9
     * @param array $campaignParams      associative array of campaign parameters and values, that are used in this email to track clicks on links
10
     * @param array $emailTemplateParams associative array with the context available when the email template got rendered with the twig engine
11
     * @param $messageId the message id of the swift-message
12
     * @param $to email address(es) of the "to" header
13
     * @param $cc email address(es) of the "cc" header
14
     * @param $bcc email address(es) of the "bcc" header
15
     *
16
     * @return string the html-code to be inserted before the hml-close tag
17
     */
18
    public function getTrackingImgCode($templateBaseId, array $campaignParams, array $emailTemplateParams, $messageId, $to, $cc, $bcc);
19
}
20