Passed
Push — master ( 699136...eb33ba )
by nicolas
46s
created
MailjetBundle/Creator/ContactCreator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,12 +39,12 @@
 block discarded – undo
39 39
             if (array_key_exists($item, $parameters)) {
40 40
                 $body = [
41 41
                     'Datatype' => "str",
42
-                    'Name' => $item . "_" . $name,
42
+                    'Name' => $item."_".$name,
43 43
                     'NameSpace' => "static"
44 44
                 ];
45 45
                 $this->client->post(Resources::$Contactmetadata, ['body' => $body]);
46 46
                 $data['Data'][] = [
47
-                    'Name' => $item . "_" . $name,
47
+                    'Name' => $item."_".$name,
48 48
                     'value' => substr($parameters[$item], 0, 1000),
49 49
                 ];
50 50
             }
Please login to merge, or discard this patch.
MailjetBundle/DependencyInjection/DekaleeMailjetExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 
44 44
         foreach ($config['simple_template_choice'] as $class => $templateId) {
45 45
             $container
46
-                ->register('dekalee.mailjet.simple_choice.' . $class, SimpleTemplateGuesser::CLASS)
46
+                ->register('dekalee.mailjet.simple_choice.'.$class, SimpleTemplateGuesser::CLASS)
47 47
                 ->setArguments([
48 48
                     $class,
49 49
                     $templateId
Please login to merge, or discard this patch.