@@ -39,12 +39,12 @@ |
||
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 | } |
@@ -43,7 +43,7 @@ |
||
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 |